diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 19:02:47 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-16 19:02:47 +0000 |
commit | e985f7e545f4739493965aad69bbecb136dc9346 (patch) | |
tree | 54afd409d8acd6202dd8ab611d24e78c28e4c0a0 /kimagemapeditor/kimagemapeditor.h | |
parent | f7670c198945adc3b95ad69a959fe5f8ae55b493 (diff) | |
download | tdewebdev-e985f7e545f4739493965aad69bbecb136dc9346.tar.gz tdewebdev-e985f7e545f4739493965aad69bbecb136dc9346.zip |
TQt4 port kdewebdev
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1237029 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kimagemapeditor/kimagemapeditor.h')
-rw-r--r-- | kimagemapeditor/kimagemapeditor.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kimagemapeditor/kimagemapeditor.h b/kimagemapeditor/kimagemapeditor.h index f6177f9b..d2d6e24c 100644 --- a/kimagemapeditor/kimagemapeditor.h +++ b/kimagemapeditor/kimagemapeditor.h @@ -130,11 +130,12 @@ class KDockMainWindow; class KImageMapEditor : public KParts::ReadWritePart { Q_OBJECT + TQ_OBJECT public : enum ToolType { Selection, Rectangle, Circle, Polygon, Freehand, AddPoint, RemovePoint }; - KImageMapEditor(TQWidget *parentWidget, const char *, - TQObject *parent, const char *name, const TQStringList & args = TQStringList()); + KImageMapEditor(TQWidget *tqparentWidget, const char *, + TQObject *tqparent, const char *name, const TQStringList & args = TQStringList()); virtual ~KImageMapEditor(); static KAboutData *createAboutData(); @@ -213,7 +214,7 @@ public : protected: void init(); - bool openHTMLFile(const KURL &, const TQString & mapName = TQString::null, const TQString & imagePath = TQString::null); + bool openHTMLFile(const KURL &, const TQString & mapName = TQString(), const TQString & imagePath = TQString()); void saveImageMap(const KURL &); /** @@ -231,7 +232,7 @@ protected: private: // Stores the hole html file in a List - // The entries are either a MapTag an ImageTag or a QString + // The entries are either a MapTag an ImageTag or a TQString HtmlContent _htmlContent; // the url of the working image; |