summaryrefslogtreecommitdiffstats
path: root/kword/KWFindReplace.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 /kword/KWFindReplace.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 'kword/KWFindReplace.h')
-rw-r--r--kword/KWFindReplace.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/kword/KWFindReplace.h b/kword/KWFindReplace.h
index 86d127dc..270bc10b 100644
--- a/kword/KWFindReplace.h
+++ b/kword/KWFindReplace.h
@@ -22,8 +22,8 @@
#ifndef searchdia_h
#define searchdia_h
-#include <qstring.h>
-#include <qstringlist.h>
+#include <tqstring.h>
+#include <tqstringlist.h>
#include <KoRichText.h>
#include <KoTextObject.h>
#include <KoTextView.h>
@@ -34,16 +34,17 @@ class KWTextFrameSet;
class KMacroCommand;
class KWTextFrameSetEdit;
/**
- * This class implements the 'find' functionality ( the "search next, prompt" loop )
- * and the 'replace' functionality. Same class, to allow centralizing the code that
+ * This class implements the 'tqfind' functionality ( the "search next, prompt" loop )
+ * and the 'tqreplace' functionality. Same class, to allow centralizing the code that
* finds the framesets and paragraphs to look into.
*/
class KWFindReplace : public KoFindReplace
{
Q_OBJECT
+ TQ_OBJECT
public:
- KWFindReplace( KWCanvas * canvas, KoSearchDia * dialog, const QValueList<KoTextObject *> & lstObjects, KWTextFrameSetEdit* textView );
- KWFindReplace( KWCanvas * parent, KoReplaceDia * dialog, const QValueList<KoTextObject *> & lstObjects, KWTextFrameSetEdit* textView );
+ KWFindReplace( KWCanvas * canvas, KoSearchDia * dialog, const TQValueList<KoTextObject *> & lstObjects, KWTextFrameSetEdit* textView );
+ KWFindReplace( KWCanvas * tqparent, KoReplaceDia * dialog, const TQValueList<KoTextObject *> & lstObjects, KWTextFrameSetEdit* textView );
~KWFindReplace();
virtual void emitNewCommand(KCommand *);