summaryrefslogtreecommitdiffstats
path: root/examples/opengl/paintedwindow/main.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <[email protected]>2023-03-22 17:04:18 +0100
committerLaszlo Agocs <[email protected]>2023-03-23 15:13:02 +0100
commit9daf2744b284413c8ca6df18bd48082bb7405bf8 (patch)
tree1fd8e933e81acac9ffa231292b12488961507450 /examples/opengl/paintedwindow/main.cpp
parent3b015718b0d156bbedafd3f83f069ce5a360d5cb (diff)
Change paintedwindow example to be a manual test
Pick-to: 6.5 Change-Id: I25a0f491f824c43fc75ba6358518133ede09adcd Reviewed-by: Christian Strømme <[email protected]>
Diffstat (limited to 'examples/opengl/paintedwindow/main.cpp')
-rw-r--r--examples/opengl/paintedwindow/main.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/examples/opengl/paintedwindow/main.cpp b/examples/opengl/paintedwindow/main.cpp
deleted file mode 100644
index e055e92812b..00000000000
--- a/examples/opengl/paintedwindow/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 <QGuiApplication>
-#include <QRect>
-
-#include "paintedwindow.h"
-
-int main(int argc, char **argv)
-{
- QGuiApplication app(argc, argv);
-
- PaintedWindow window;
- window.show();
-
- return app.exec();
-}
-