diff options
Diffstat (limited to 'tests/manual/qtbug-8933/main.cpp')
-rw-r--r-- | tests/manual/qtbug-8933/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/manual/qtbug-8933/main.cpp b/tests/manual/qtbug-8933/main.cpp new file mode 100644 index 0000000..841b7c3 --- /dev/null +++ b/tests/manual/qtbug-8933/main.cpp @@ -0,0 +1,10 @@ +#include <QtGui/QApplication> +#include "widget.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + Widget w; + w.show(); + return a.exec(); +} |