summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/assistant/help/qhelpengine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/assistant/help/qhelpengine.cpp b/src/assistant/help/qhelpengine.cpp
index 19e44cd91..bb1475fdf 100644
--- a/src/assistant/help/qhelpengine.cpp
+++ b/src/assistant/help/qhelpengine.cpp
@@ -97,28 +97,28 @@ void QHelpEnginePrivate::applyCurrentFilter()
void QHelpEnginePrivate::setContentsWidgetBusy()
{
-#ifndef QT_NO_CURSOR
+#if QT_CONFIG(cursor)
contentWidget->setCursor(Qt::WaitCursor);
#endif
}
void QHelpEnginePrivate::unsetContentsWidgetBusy()
{
-#ifndef QT_NO_CURSOR
+#if QT_CONFIG(cursor)
contentWidget->unsetCursor();
#endif
}
void QHelpEnginePrivate::setIndexWidgetBusy()
{
-#ifndef QT_NO_CURSOR
+#if QT_CONFIG(cursor)
indexWidget->setCursor(Qt::WaitCursor);
#endif
}
void QHelpEnginePrivate::unsetIndexWidgetBusy()
{
-#ifndef QT_NO_CURSOR
+#if QT_CONFIG(cursor)
indexWidget->unsetCursor();
#endif
}