summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp')
-rw-r--r--examples/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp b/examples/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp
deleted file mode 100644
index ef8c6ed1b8..0000000000
--- a/examples/widgets/tutorials/gettingStarted/gsQt/part1/main.cpp
+++ /dev/null
@@ -1,15 +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;
- textEdit.show();
-
- return app.exec();
-}
-