summaryrefslogtreecommitdiffstats
path: root/src/svnfrontend/fronthelpers/cursorstack.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-05-04 19:54:24 +0000
commitd7633c195a464e4d344ada9eea61afd10110598a (patch)
tree1f2da0b135f3ed84955e340cae823f00c4ce7284 /src/svnfrontend/fronthelpers/cursorstack.h
parent3fa7eb804f67b2789f128075cc2522f398640250 (diff)
downloadtdesvn-d7633c195a464e4d344ada9eea61afd10110598a.tar.gz
tdesvn-d7633c195a464e4d344ada9eea61afd10110598a.zip
Port kdesvn to TQt4
This enables compilation under both Qt3 and Qt4 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kdesvn@1230412 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/svnfrontend/fronthelpers/cursorstack.h')
-rw-r--r--src/svnfrontend/fronthelpers/cursorstack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/svnfrontend/fronthelpers/cursorstack.h b/src/svnfrontend/fronthelpers/cursorstack.h
index 471af6e..4daf061 100644
--- a/src/svnfrontend/fronthelpers/cursorstack.h
+++ b/src/svnfrontend/fronthelpers/cursorstack.h
@@ -25,7 +25,7 @@
#define __CURSOR_STACK_H
#include <kapplication.h>
-#include <qcursor.h>
+#include <tqcursor.h>
//! Change cursor on stack.
/*! May used in methods where more than returns exists. Cursor will restored on destruction
@@ -39,9 +39,9 @@ public:
* Create instance and changes the application cursor to \a c
* \param c cursortype to set.
*/
- CursorStack(Qt::CursorShape c = Qt::WaitCursor)
+ CursorStack(TQt::tqCursorShape c = TQt::WaitCursor)
{
- KApplication::setOverrideCursor(QCursor(c));
+ KApplication::setOverrideCursor(TQCursor(c));
}
//! Destructor.
/*!