diff options
Diffstat (limited to 'tests/plugins/pack/qtapp/src/main.cpp')
| -rw-r--r-- | tests/plugins/pack/qtapp/src/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/plugins/pack/qtapp/src/main.cpp b/tests/plugins/pack/qtapp/src/main.cpp new file mode 100644 index 000000000..a1cfd8dea --- /dev/null +++ b/tests/plugins/pack/qtapp/src/main.cpp @@ -0,0 +1,10 @@ +#include "mainwindow.h" +#include <QApplication> + +int main(int argc, char *argv[]) { + QApplication a(argc, argv); + MainWindow w; + w.show(); + return a.exec(); +} + |
