diff options
| author | carols <[email protected]> | 2020-04-07 06:14:45 +0800 |
|---|---|---|
| committer | carols <[email protected]> | 2020-04-07 06:44:33 +0800 |
| commit | f4ecb2c0dfb21b0566e15efdae5b4f4069a274c9 (patch) | |
| tree | da38bcd864b338279d2d30e13dfb6c6f199b4fb5 /tests/projects/qt/with_private/src/main.cpp | |
| parent | a88d4dc9322430377ce6ff8b0e2e0ff3fa1eda92 (diff) | |
fix with_private name
Diffstat (limited to 'tests/projects/qt/with_private/src/main.cpp')
| -rw-r--r-- | tests/projects/qt/with_private/src/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/projects/qt/with_private/src/main.cpp b/tests/projects/qt/with_private/src/main.cpp new file mode 100644 index 000000000..b48f94ec8 --- /dev/null +++ b/tests/projects/qt/with_private/src/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} |
