summaryrefslogtreecommitdiffstats
path: root/tests/manual/qtbug-8933/main.cpp
diff options
context:
space:
mode:
authorCarlos Manuel Duclos Vergara <carlos.duclos@nokia.com>2010-03-17 11:15:59 (GMT)
committerCarlos Manuel Duclos Vergara <carlos.duclos@nokia.com>2010-03-17 11:16:49 (GMT)
commit7e9052cc1f16b3eeabb73ada9492d91620df796d (patch)
tree94337fc0e454e3dff97791b0430477ee9d896400 /tests/manual/qtbug-8933/main.cpp
parentf8d5f2594a9b268b9eeecf95b24b23fc940c71ce (diff)
downloadQt-7e9052cc1f16b3eeabb73ada9492d91620df796d.zip
Qt-7e9052cc1f16b3eeabb73ada9492d91620df796d.tar.gz
Qt-7e9052cc1f16b3eeabb73ada9492d91620df796d.tar.bz2
Manual test for QTBUG-8933.
See the readme file. Reviewed-by: TrustMe
Diffstat (limited to 'tests/manual/qtbug-8933/main.cpp')
-rw-r--r--tests/manual/qtbug-8933/main.cpp10
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();
+}