summaryrefslogtreecommitdiffstats
path: root/examples/widgets/widgets/codeeditor/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/widgets/codeeditor/main.cpp')
-rw-r--r--examples/widgets/widgets/codeeditor/main.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/widgets/widgets/codeeditor/main.cpp b/examples/widgets/widgets/codeeditor/main.cpp
deleted file mode 100644
index 20b72b18ae..0000000000
--- a/examples/widgets/widgets/codeeditor/main.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include <QApplication>
-
-#include "codeeditor.h"
-
-int main(int argv, char **args)
-{
- QApplication app(argv, args);
-
- CodeEditor editor;
- editor.setWindowTitle(QObject::tr("Code Editor Example"));
- editor.show();
-
- return app.exec();
-}
-