summaryrefslogtreecommitdiffstats
path: root/kword/KWFrameList.h
diff options
context:
space:
mode:
Diffstat (limited to 'kword/KWFrameList.h')
-rw-r--r--kword/KWFrameList.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kword/KWFrameList.h b/kword/KWFrameList.h
index 998b2a0d..992ac388 100644
--- a/kword/KWFrameList.h
+++ b/kword/KWFrameList.h
@@ -20,8 +20,8 @@
#include "KWFrame.h"
-#include <qptrlist.h>
-#include <qvaluevector.h>
+#include <tqptrlist.h>
+#include <tqvaluevector.h>
class KWDocument;
@@ -41,12 +41,12 @@ public:
/**
* Fetches the frames below the frame this frameList is for.
*/
- QValueList<KWFrame *> framesBelow() const;
+ TQValueList<KWFrame *> framesBelow() const;
/**
* Fetches the frames on top of the frame this frameList is for.
*/
- QValueList<KWFrame *> framesOnTop() const;
+ TQValueList<KWFrame *> framesOnTop() const;
/**
* Update the z-ordering around the frame we host the framelist for.
@@ -100,10 +100,10 @@ public:
private:
static KWFrameList *getFirstFrameList(KWDocument *doc);
- void updateZOrderFor(const QPtrList<KWFrame> &frames);
- void setFrames(const QPtrList<KWFrame> &frames);
+ void updateZOrderFor(const TQPtrList<KWFrame> &frames);
+ void setFrames(const TQPtrList<KWFrame> &frames);
- QValueVector<KWFrame *> m_frames; // sorted by Z Order
+ TQValueVector<KWFrame *> m_frames; // sorted by Z Order
KWDocument *m_doc;
KWFrame *m_frame;
};