summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorJarek Kobus <jkobus@trolltech.com>2009-04-28 07:20:27 (GMT)
committerJarek Kobus <jkobus@trolltech.com>2009-04-28 07:20:27 (GMT)
commit30087926ae942decd80632fbbb06eb389a343fac (patch)
treed5d2b508e0b43c57c3a0037442ac1424941b2b64 /tests/auto
parente372dc629927b60943568e9bbadb79fbaafab3a8 (diff)
parent484d54532a773cf90ebf8c9c2c4f4d839b1b3744 (diff)
downloadQt-30087926ae942decd80632fbbb06eb389a343fac.zip
Qt-30087926ae942decd80632fbbb06eb389a343fac.tar.gz
Qt-30087926ae942decd80632fbbb06eb389a343fac.tar.bz2
Merge branch '4.5' of git@scm.dev.nokia.troll.no:qt/qt into 4.5
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp b/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp
index aa63753..24ccecf 100644
--- a/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp
+++ b/tests/auto/qstylesheetstyle/tst_qstylesheetstyle.cpp
@@ -605,8 +605,9 @@ void tst_QStyleSheetStyle::palettePropagation()
QVERIFY(COLOR(gb) == Qt::red);
QVERIFY(COLOR(pb) == APPCOLOR(pb)); // palette shouldn't propagate
gb.setStyleSheet("QGroupBox * { color: red }");
+
QVERIFY(COLOR(pb) == Qt::red);
- QVERIFY(COLOR(gb) == APPCOLOR(pb));
+ QVERIFY(COLOR(gb) == APPCOLOR(gb));
QWidget window;
window.setStyleSheet("* { color: white; }");