summaryrefslogtreecommitdiffstats
path: root/tests/auto/qwidget/tst_qwidget.cpp
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-09-30 11:21:41 +0200
committeraxis <qt-info@nokia.com>2009-09-30 15:31:10 +0200
commit0728fa73b83e7f29990eae2520f0994e413264c2 (patch)
tree31d43c3cc731261467c1dbfeed6601d94bc11710 /tests/auto/qwidget/tst_qwidget.cpp
parentc3cce20dd24ee110d4a8b434ea0623fd8c07ed68 (diff)
Avoided qt3support constructor (S60 port doesn't have it).
RevBy: Paul Olav Tvete
Diffstat (limited to 'tests/auto/qwidget/tst_qwidget.cpp')
-rw-r--r--tests/auto/qwidget/tst_qwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp
index 8860924e55..309b818a48 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);