diff options
author | axis <qt-info@nokia.com> | 2009-09-30 09:21:41 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-09-30 13:31:10 (GMT) |
commit | 0728fa73b83e7f29990eae2520f0994e413264c2 (patch) | |
tree | 31d43c3cc731261467c1dbfeed6601d94bc11710 | |
parent | c3cce20dd24ee110d4a8b434ea0623fd8c07ed68 (diff) | |
download | Qt-0728fa73b83e7f29990eae2520f0994e413264c2.zip Qt-0728fa73b83e7f29990eae2520f0994e413264c2.tar.gz Qt-0728fa73b83e7f29990eae2520f0994e413264c2.tar.bz2 |
Avoided qt3support constructor (S60 port doesn't have it).
RevBy: Paul Olav Tvete
-rw-r--r-- | tests/auto/qwidget/tst_qwidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 8860924..309b818 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -9146,7 +9146,7 @@ void tst_QWidget::destroyBackingStore() void tst_QWidget::rectOutsideCoordinatesLimit_task144779() { QApplication::setOverrideCursor(Qt::BlankCursor); //keep the cursor out of screen grabs - QWidget main(0,0,Qt::FramelessWindowHint); //don't get confused by the size of the window frame + QWidget main(0,Qt::FramelessWindowHint); //don't get confused by the size of the window frame QPalette palette; palette.setColor(QPalette::Window, Qt::red); main.setPalette(palette); |