diff options
author | Janne Anttila <janne.anttila@digia.com> | 2009-09-24 10:23:50 (GMT) |
---|---|---|
committer | Janne Anttila <janne.anttila@digia.com> | 2009-09-24 10:23:50 (GMT) |
commit | 135e02d11becc8ee434524756d85221244c185ee (patch) | |
tree | b9acabb3424321fa3eb5f6390e0f87c3fdee91f7 /tests/auto/qstyle/tst_qstyle.cpp | |
parent | 39d0ded8f6e94df2a08876ee1cf00253ef2b7de3 (diff) | |
parent | d57e2f4d01534f44dde629b71398783777fdad4e (diff) | |
download | Qt-135e02d11becc8ee434524756d85221244c185ee.zip Qt-135e02d11becc8ee434524756d85221244c185ee.tar.gz Qt-135e02d11becc8ee434524756d85221244c185ee.tar.bz2 |
Merge branch '4.6' of git@scm.dev.troll.no:qt/qt into 4.6
Diffstat (limited to 'tests/auto/qstyle/tst_qstyle.cpp')
-rw-r--r-- | tests/auto/qstyle/tst_qstyle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qstyle/tst_qstyle.cpp b/tests/auto/qstyle/tst_qstyle.cpp index 8526be1..56776d7 100644 --- a/tests/auto/qstyle/tst_qstyle.cpp +++ b/tests/auto/qstyle/tst_qstyle.cpp @@ -219,7 +219,7 @@ void tst_QStyle::testStyleFactory() foreach (QString styleName , keys) { QStyle *style = QStyleFactory::create(styleName); - QVERIFY(style != 0); + QVERIFY2(style != 0, qPrintable(QString::fromLatin1("Fail to load style '%1'").arg(styleName))); delete style; } } |