Commit 2c97f9ae authored by Oliver Wolff's avatar Oliver Wolff Committed by The Qt Project
Browse files

Assistant: Fixed build for QT_NO_CURSOR


Change-Id: I5f1f3774ac81ea61406c6ef964fd189051ebe994
Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
Reviewed-by: default avatarFriedemann Kleint <Friedemann.Kleint@digia.com>
Reviewed-by: default avatarKarsten Heimrich <karsten.heimrich@digia.com>
Showing with 8 additions and 0 deletions
......@@ -96,22 +96,30 @@ void QHelpEnginePrivate::applyCurrentFilter()
void QHelpEnginePrivate::setContentsWidgetBusy()
{
#ifndef QT_NO_CURSOR
contentWidget->setCursor(Qt::WaitCursor);
#endif
}
void QHelpEnginePrivate::unsetContentsWidgetBusy()
{
#ifndef QT_NO_CURSOR
contentWidget->unsetCursor();
#endif
}
void QHelpEnginePrivate::setIndexWidgetBusy()
{
#ifndef QT_NO_CURSOR
indexWidget->setCursor(Qt::WaitCursor);
#endif
}
void QHelpEnginePrivate::unsetIndexWidgetBusy()
{
#ifndef QT_NO_CURSOR
indexWidget->unsetCursor();
#endif
}
void QHelpEnginePrivate::stopDataCollection()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment