summaryrefslogtreecommitdiffstats
path: root/kexi/kexiutils/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kexi/kexiutils/utils.cpp')
-rw-r--r--kexi/kexiutils/utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kexi/kexiutils/utils.cpp b/kexi/kexiutils/utils.cpp
index fc126152..eeddfdf2 100644
--- a/kexi/kexiutils/utils.cpp
+++ b/kexi/kexiutils/utils.cpp
@@ -63,11 +63,11 @@ void DelayedCursorHandler::show() {
DelayedCursorHandler _delayedCursorHandler;
void KexiUtils::setWaitCursor(bool noDelay) {
- if (kapp->guiEnabled())
+ if (tdeApp->guiEnabled())
_delayedCursorHandler.start(noDelay);
}
void KexiUtils::removeWaitCursor() {
- if (kapp->guiEnabled())
+ if (tdeApp->guiEnabled())
_delayedCursorHandler.stop();
}