summaryrefslogtreecommitdiffstats
path: root/examples/widgets/graphicsview/flowlayout/main.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 14:26:30 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-28 09:56:40 +0200
commit95595d68bee7ef9e58100e4230f71d7f065eacb7 (patch)
tree3147bd753703331963b749a4050813b22da9505a /examples/widgets/graphicsview/flowlayout/main.cpp
parent532e1c9bf674f44da2b60fbc81bf3bc921641b7b (diff)
Move graphis view flow layout example to manual test
Pick-to: 6.5 6.6 Change-Id: I713816114b87def9eab79b893d13554f1c37c6a5 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/widgets/graphicsview/flowlayout/main.cpp')
-rw-r--r--examples/widgets/graphicsview/flowlayout/main.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/examples/widgets/graphicsview/flowlayout/main.cpp b/examples/widgets/graphicsview/flowlayout/main.cpp
deleted file mode 100644
index 118b404870..0000000000
--- a/examples/widgets/graphicsview/flowlayout/main.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-//! [1]
-#include "window.h"
-
-#include <QApplication>
-#include <QGraphicsView>
-
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
-
- QGraphicsScene scene;
- QGraphicsView view(&scene);
- Window *w = new Window;
- scene.addItem(w);
-
- view.resize(400, 300);
- view.show();
-
- return app.exec();
-}
-//! [1]