summaryrefslogtreecommitdiffstats
path: root/examples/widgets/draganddrop/puzzle/main.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 13:48:57 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-28 00:09:58 +0200
commitcefb1c9ca9af73999247678907c496c1a143d00f (patch)
tree9d77b10e151289ffd862f6ef7f42dfc510be0611 /examples/widgets/draganddrop/puzzle/main.cpp
parent3a9526468c134b68b64b9a3bb6278d47c266e381 (diff)
Move drag and drop puzzle example to manual test
Pick-to: 6.5 6.6 Change-Id: I859cdb2cf74cd6272c29924c77dab26b4f4c0b6c Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/widgets/draganddrop/puzzle/main.cpp')
-rw-r--r--examples/widgets/draganddrop/puzzle/main.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/widgets/draganddrop/puzzle/main.cpp b/examples/widgets/draganddrop/puzzle/main.cpp
deleted file mode 100644
index 32e219256a..0000000000
--- a/examples/widgets/draganddrop/puzzle/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 "mainwindow.h"
-
-#include <QApplication>
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
- MainWindow window;
- window.loadImage(QStringLiteral(":/images/example.jpg"));
- window.show();
- return app.exec();
-}