summaryrefslogtreecommitdiff
path: root/test cases/frameworks/4 qt5/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/frameworks/4 qt5/main.cpp')
-rw-r--r--test cases/frameworks/4 qt5/main.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/test cases/frameworks/4 qt5/main.cpp b/test cases/frameworks/4 qt5/main.cpp
index 168b3442a..95cc1f96e 100644
--- a/test cases/frameworks/4 qt5/main.cpp
+++ b/test cases/frameworks/4 qt5/main.cpp
@@ -4,8 +4,11 @@
int main(int argc, char **argv) {
QApplication app(argc, argv);
MainWindow *win = new MainWindow();
- win->setWindowTitle("Button demo app");
- win->show();
+ win->setWindowTitle("Meson Qt5 build test");
- return app.exec();
+ // Don't actually start the GUI so this
+ // can be run as a unit test.
+ //win->show();
+ //return app.exec();
+ return 0;
}