summaryrefslogtreecommitdiffstats
path: root/karbon/plugins/imagetool/vimagetool.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/imagetool/vimagetool.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/imagetool/vimagetool.h')
-rw-r--r--karbon/plugins/imagetool/vimagetool.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/karbon/plugins/imagetool/vimagetool.h b/karbon/plugins/imagetool/vimagetool.h
index c9ac7f44..65b187ea 100644
--- a/karbon/plugins/imagetool/vimagetool.h
+++ b/karbon/plugins/imagetool/vimagetool.h
@@ -21,14 +21,14 @@
#ifndef __VIMAGETOOL_H__
#define __VIMAGETOOL_H__
-#include <qstring.h>
+#include <tqstring.h>
#include "vtool.h"
#include <commands/vcommand.h>
class KarbonView;
class VImage;
-class QCursor;
+class TQCursor;
class VImageTool : public VTool
{
@@ -40,15 +40,15 @@ public:
virtual void deactivate();
virtual void setup( KActionCollection *collection );
- virtual QString uiname() { return i18n( "Image Tool" ); }
- virtual QString contextHelp();
- virtual QString statusText();
+ virtual TQString uiname() { return i18n( "Image Tool" ); }
+ virtual TQString contextHelp();
+ virtual TQString statusText();
protected:
class VInsertImageCmd : public VCommand
{
public:
- VInsertImageCmd( VDocument* doc, const QString& name, VImage *image, KoPoint pos );
+ VInsertImageCmd( VDocument* doc, const TQString& name, VImage *image, KoPoint pos );
virtual ~VInsertImageCmd() {}
virtual void execute();
@@ -63,7 +63,7 @@ protected:
virtual void mouseButtonRelease();
private:
- QCursor* m_cursor;
+ TQCursor* m_cursor;
};
#endif