diff options
| author | Laszlo Agocs <[email protected]> | 2023-03-22 17:04:18 +0100 |
|---|---|---|
| committer | Laszlo Agocs <[email protected]> | 2023-03-23 15:13:02 +0100 |
| commit | 9daf2744b284413c8ca6df18bd48082bb7405bf8 (patch) | |
| tree | 1fd8e933e81acac9ffa231292b12488961507450 /tests/manual/examples/opengl/paintedwindow/main.cpp | |
| parent | 3b015718b0d156bbedafd3f83f069ce5a360d5cb (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 'tests/manual/examples/opengl/paintedwindow/main.cpp')
| -rw-r--r-- | tests/manual/examples/opengl/paintedwindow/main.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/manual/examples/opengl/paintedwindow/main.cpp b/tests/manual/examples/opengl/paintedwindow/main.cpp new file mode 100644 index 00000000000..e055e92812b --- /dev/null +++ b/tests/manual/examples/opengl/paintedwindow/main.cpp @@ -0,0 +1,18 @@ +// 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(); +} + |
