diff options
author | Morten Johan Sørvig <morten.sorvig@nokia.com> | 2010-03-10 11:41:05 (GMT) |
---|---|---|
committer | Morten Johan Sørvig <morten.sorvig@nokia.com> | 2010-03-10 13:08:27 (GMT) |
commit | ed719fefdb4e6fa3fd4c296c1042dfa0454169c6 (patch) | |
tree | 31044b0c47a0b5c2be2efdc28b4706e128f0bb70 /tests/manual/repaint/toplevel | |
parent | 5fa84eeac031ef53babfa8ca616ca69cc1f2c514 (diff) | |
download | Qt-ed719fefdb4e6fa3fd4c296c1042dfa0454169c6.zip Qt-ed719fefdb4e6fa3fd4c296c1042dfa0454169c6.tar.gz Qt-ed719fefdb4e6fa3fd4c296c1042dfa0454169c6.tar.bz2 |
Import static contents tests from old manualtests
Diffstat (limited to 'tests/manual/repaint/toplevel')
-rw-r--r-- | tests/manual/repaint/toplevel/main.cpp | 11 | ||||
-rw-r--r-- | tests/manual/repaint/toplevel/toplevel.pro | 16 |
2 files changed, 27 insertions, 0 deletions
diff --git a/tests/manual/repaint/toplevel/main.cpp b/tests/manual/repaint/toplevel/main.cpp new file mode 100644 index 0000000..a5981a5 --- /dev/null +++ b/tests/manual/repaint/toplevel/main.cpp @@ -0,0 +1,11 @@ +#include <QtGui> +#include "../shared/shared.h" + +int main(int argc, char **argv) +{ + QApplication app(argc, argv); + StaticWidget widget; + widget.show(); + return app.exec(); +} + diff --git a/tests/manual/repaint/toplevel/toplevel.pro b/tests/manual/repaint/toplevel/toplevel.pro new file mode 100644 index 0000000..568ea8e --- /dev/null +++ b/tests/manual/repaint/toplevel/toplevel.pro @@ -0,0 +1,16 @@ +###################################################################### +# Automatically generated by qmake (2.01a) Tue Nov 7 10:15:42 2006 +###################################################################### + +TEMPLATE = app +TARGET = toplevel +DEPENDPATH += . +INCLUDEPATH += . +CONFIG += console + +# Input +HEADERS += ../shared/shared.h +SOURCES += main.cpp +CONFIG += qt warn_on debug create_prl link_prl +OBJECTS_DIR = .obj/debug-shared +MOC_DIR = .moc/debug-shared |