summaryrefslogtreecommitdiffstats
path: root/examples/embedded/styleexample/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/embedded/styleexample/main.cpp')
-rw-r--r--examples/embedded/styleexample/main.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/examples/embedded/styleexample/main.cpp b/examples/embedded/styleexample/main.cpp
deleted file mode 100644
index 2a7577e845..0000000000
--- a/examples/embedded/styleexample/main.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-#include <QApplication>
-
-#include "stylewidget.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
- Q_INIT_RESOURCE(styleexample);
-
- app.setApplicationName("style");
- app.setOrganizationName("QtProject");
- app.setOrganizationDomain("www.qt-project.org");
-
- StyleWidget widget;
- widget.showFullScreen();
-
- return app.exec();
-}
-