diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/manual/gdbdebugger/simple/app.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp index db880e4b2a..b71114418e 100644 --- a/tests/manual/gdbdebugger/simple/app.cpp +++ b/tests/manual/gdbdebugger/simple/app.cpp @@ -60,6 +60,7 @@ #include <QtGui/QLabel> #include <QtGui/QPainter> #include <QtGui/QPainterPath> +#include <QtGui/QRegion> #include <QtGui/QStandardItemModel> #include <QtNetwork/QHostAddress> @@ -803,6 +804,15 @@ void testQPixmap() Q_UNUSED(i); } +void testQRegion() +{ + QRegion region; + region += QRect(100, 100, 200, 200); + region += QRect(300, 300, 400, 500); + region += QRect(500, 500, 600, 600); +} + + void testPlugin() { QString dir = QDir::currentPath(); @@ -1793,6 +1803,7 @@ int main(int argc, char *argv[]) //testWCout0(); //testWCout(); testColor(); + testQRegion(); testStuff(); testPeekAndPoke3(); testFunctionPointer(); |