summaryrefslogtreecommitdiffstats
path: root/examples/widgets/mainwindows/dockwidgets/main.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 13:45:42 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 23:15:02 +0200
commit2a65849e10e5288d0aa61d293f3fb80d4056bc37 (patch)
tree6e8ee5ac026504efcd26efec9b84e3b2b70de735 /examples/widgets/mainwindows/dockwidgets/main.cpp
parentfc0e82f58a8fbd879fb0867334b664bd83863d8d (diff)
Move dock widgets example to manual test
Pick-to: 6.5 6.6 Change-Id: I23ca3f2450df8f6c71509235ccec655d88d0d6d7 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/widgets/mainwindows/dockwidgets/main.cpp')
-rw-r--r--examples/widgets/mainwindows/dockwidgets/main.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/widgets/mainwindows/dockwidgets/main.cpp b/examples/widgets/mainwindows/dockwidgets/main.cpp
deleted file mode 100644
index 431d7dae98..0000000000
--- a/examples/widgets/mainwindows/dockwidgets/main.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-#include <QApplication>
-
-#include "mainwindow.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
- MainWindow mainWin;
- mainWin.show();
- return app.exec();
-}