diff options
author | Janne Anttila <janne.anttila@digia.com> | 2010-03-12 06:38:42 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2010-03-12 07:24:56 (GMT) |
commit | 72ac56cd49c3c50b8b293b0f9843bafa8e197fcd (patch) | |
tree | 2f2ec13bde5306fc1bdd14bec3a182d411f06033 /tests | |
parent | 76bbc26d9d510570002baee91352f71a6dd46832 (diff) | |
download | Qt-72ac56cd49c3c50b8b293b0f9843bafa8e197fcd.zip Qt-72ac56cd49c3c50b8b293b0f9843bafa8e197fcd.tar.gz Qt-72ac56cd49c3c50b8b293b0f9843bafa8e197fcd.tar.bz2 |
HotFix for fluidlauncher default size caused by 6d44dadd.
It seems that in Symbian we cannot restore Qt::WA_Moved and
Qt::WA_Resized attributes in setWindowState method to the same ones
what the attributes were when method was called. Thus we currently
make sure that Qt::WA_Moved and Qt::WA_Resized attributes are not
touched when normal window state is applied.
There is a new task QTBUG-8977 to sort out when those attributes
should be set and when not.
Reviewed-By: Sami Merila
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qwidget/tst_qwidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index 65f4945..76e20b9 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -10043,8 +10043,8 @@ void tst_QWidget::taskQTBUG_7532_tabOrderWithFocusProxy() void tst_QWidget::movedAndResizedAttributes() { -#if defined (Q_OS_MAC) || defined(Q_WS_QWS) - QEXPECT_FAIL("", "FixMe, QTBUG-8941", Abort); +#if defined (Q_OS_MAC) || defined(Q_WS_QWS) || defined(Q_OS_SYMBIAN) + QEXPECT_FAIL("", "FixMe, QTBUG-8941 and QTBUG-8977", Abort); QVERIFY(false); #else QWidget w; |