summaryrefslogtreecommitdiffstats
path: root/examples/widgets/layouts/borderlayout/main.cpp
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 13:29:58 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2023-06-26 20:47:45 +0200
commit42b58f8cb41790169eb2ebcd215cf2696dcecbe7 (patch)
tree51e9f9fbd5a99d0499afe6ab1998a7ac41e6ca9c /examples/widgets/layouts/borderlayout/main.cpp
parent6c96218b43667ae47364f303b566be6e0e5779fa (diff)
Move border layout example to manual test
Pick-to: 6.5 6.6 Change-Id: I3f45043a64275f8678288e1d9839271eafa1fd2b Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'examples/widgets/layouts/borderlayout/main.cpp')
-rw-r--r--examples/widgets/layouts/borderlayout/main.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/widgets/layouts/borderlayout/main.cpp b/examples/widgets/layouts/borderlayout/main.cpp
deleted file mode 100644
index 27409403a5..0000000000
--- a/examples/widgets/layouts/borderlayout/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 "window.h"
-
-int main(int argc, char *argv[])
-{
- QApplication app(argc, argv);
- Window window;
- window.show();
- return app.exec();
-}