diff options
Diffstat (limited to 'src/svnfrontend/fronthelpers/cursorstack.h')
-rw-r--r-- | src/svnfrontend/fronthelpers/cursorstack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/svnfrontend/fronthelpers/cursorstack.h b/src/svnfrontend/fronthelpers/cursorstack.h index cadad9b..ba69612 100644 --- a/src/svnfrontend/fronthelpers/cursorstack.h +++ b/src/svnfrontend/fronthelpers/cursorstack.h @@ -41,7 +41,7 @@ public: */ CursorStack(TQt::CursorShape c = TQt::WaitCursor) { - KApplication::setOverrideCursor(TQCursor(c)); + TDEApplication::setOverrideCursor(TQCursor(c)); } //! Destructor. /*! @@ -49,7 +49,7 @@ public: */ ~CursorStack() { - KApplication::restoreOverrideCursor(); + TDEApplication::restoreOverrideCursor(); } }; |