summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp')
-rw-r--r--tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp b/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
index 310e43cd53..dc8b1c12f3 100644
--- a/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
+++ b/tests/auto/widgets/styles/qstylesheetstyle/tst_qstylesheetstyle.cpp
@@ -47,7 +47,8 @@
#include <QPlastiqueStyle>
#include <private/qstylesheetstyle_p.h>
-#include "../../../platformquirks.h"
+
+#include "../../../qtest-config.h"
class tst_QStyleSheetStyle : public QObject
{
@@ -78,7 +79,9 @@ private slots:
void onWidgetDestroyed();
void fontPrecedence();
void focusColors();
+#ifndef QTEST_NO_CURSOR
void hoverColors();
+#endif
void background();
void tabAlignement();
void attributesList();
@@ -788,10 +791,9 @@ void tst_QStyleSheetStyle::focusColors()
}
}
+#ifndef QTEST_NO_CURSOR
void tst_QStyleSheetStyle::hoverColors()
{
- if (!PlatformQuirks::haveMouseCursor())
- QSKIP("No mouse Cursor on this platform");
QList<QWidget *> widgets;
widgets << new QPushButton("TESTING TESTING");
widgets << new QLineEdit("TESTING TESTING");
@@ -880,8 +882,8 @@ void tst_QStyleSheetStyle::hoverColors()
(QString::fromLatin1(widget->metaObject()->className())
+ " did not contain text color #ff0084").toLocal8Bit().constData());
}
-
}
+#endif
class SingleInheritanceDialog : public QDialog
{