summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp')
-rw-r--r--examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp b/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
deleted file mode 100644
index 722d7889d0..0000000000
--- a/examples/widgets/tutorials/gettingStarted/gsQt/part2/main.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include <QtWidgets>
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QTextEdit *textEdit = new QTextEdit;
- QPushButton *quitButton = new QPushButton("&Quit");
-
- QObject::connect(quitButton, &QPushButton::clicked,
- qApp, &QApplication::quit);
-
- QVBoxLayout *layout = new QVBoxLayout;
- layout->addWidget(textEdit);
- layout->addWidget(quitButton);
-
- QWidget window;
- window.setLayout(layout);
-
- window.show();
-
- return app.exec();
-}
-