diff options
author | Carlos Manuel Duclos Vergara <carlos.duclos@nokia.com> | 2010-03-17 11:15:59 (GMT) |
---|---|---|
committer | Carlos Manuel Duclos Vergara <carlos.duclos@nokia.com> | 2010-03-17 11:16:49 (GMT) |
commit | 7e9052cc1f16b3eeabb73ada9492d91620df796d (patch) | |
tree | 94337fc0e454e3dff97791b0430477ee9d896400 /tests/manual/qtbug-8933/main.cpp | |
parent | f8d5f2594a9b268b9eeecf95b24b23fc940c71ce (diff) | |
download | Qt-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.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(); +} |