summaryrefslogtreecommitdiffstats
path: root/karbon/plugins/zoomtool/vzoomtool.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-06-25 05:28:35 +0000
commitf008adb5a77e094eaf6abf3fc0f36958e66896a5 (patch)
tree8e9244c4d4957c36be81e15b566b4aa5ea26c982 /karbon/plugins/zoomtool/vzoomtool.h
parent1210f27b660efb7b37ff43ec68763e85a403471f (diff)
downloadkoffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.tar.gz
koffice-f008adb5a77e094eaf6abf3fc0f36958e66896a5.zip
TQt4 port koffice
This should enable compilation under both Qt3 and Qt4; fixes for any missed components will be forthcoming git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/koffice@1238284 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'karbon/plugins/zoomtool/vzoomtool.h')
-rw-r--r--karbon/plugins/zoomtool/vzoomtool.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/karbon/plugins/zoomtool/vzoomtool.h b/karbon/plugins/zoomtool/vzoomtool.h
index 2616c03f..c6f1ffcd 100644
--- a/karbon/plugins/zoomtool/vzoomtool.h
+++ b/karbon/plugins/zoomtool/vzoomtool.h
@@ -22,11 +22,11 @@
#define __VZOOMTOOL_H__
#include "KoPoint.h"
-#include <qstring.h>
+#include <tqstring.h>
#include "vtool.h"
-class QCursor;
+class TQCursor;
class KarbonView;
@@ -40,9 +40,9 @@ public:
virtual void deactivate();
virtual void setup( KActionCollection *collection );
- virtual QString uiname() { return i18n( "Zoom Tool" ); }
- virtual QString contextHelp();
- virtual QString statusText();
+ virtual TQString uiname() { return i18n( "Zoom Tool" ); }
+ virtual TQString contextHelp();
+ virtual TQString statusText();
protected:
void draw();
@@ -52,7 +52,7 @@ protected:
virtual void mouseDrag();
virtual void mouseDragRelease();
- virtual bool keyReleased( Qt::Key key );
+ virtual bool keyReleased( TQt::Key key );
virtual void rightMouseButtonRelease();
@@ -61,7 +61,7 @@ protected:
KoPoint m_current;
private:
- QCursor* m_plusCursor;
+ TQCursor* m_plusCursor;
};