summaryrefslogtreecommitdiffstats
path: root/kbabel/kbabel/kbbookmarkhandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'kbabel/kbabel/kbbookmarkhandler.h')
-rw-r--r--kbabel/kbabel/kbbookmarkhandler.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kbabel/kbabel/kbbookmarkhandler.h b/kbabel/kbabel/kbbookmarkhandler.h
index f47c2dbf..42e94959 100644
--- a/kbabel/kbabel/kbbookmarkhandler.h
+++ b/kbabel/kbabel/kbbookmarkhandler.h
@@ -34,8 +34,8 @@
#ifndef KBBOOKMARKHANDLER_H
#define KBBOOKMARKHANDLER_H
-#include <qobject.h>
-#include <qptrlist.h>
+#include <tqobject.h>
+#include <tqptrlist.h>
class QPopupMenu;
class QString;
@@ -55,7 +55,7 @@ class KBabelBookmark
* @param msgindex the index of the bookmarked msgid.
* @param msgtext the msgid.
*/
- KBabelBookmark(int msgindex, QString msgtext);
+ KBabelBookmark(int msgindex, TQString msgtext);
/**
* Return the index of the msgid.
@@ -68,7 +68,7 @@ class KBabelBookmark
*
* @return the msgid.
*/
- QString msgtext() const;
+ TQString msgtext() const;
private:
/**
@@ -78,7 +78,7 @@ class KBabelBookmark
/**
* The classes' own copy of the msgid.
*/
- QString _msgtext;
+ TQString _msgtext;
};
@@ -96,7 +96,7 @@ class KBabelBookmarkHandler : public QObject
* @param menu the pointer to the menu where the bookmarks will be
* displayed.
*/
- KBabelBookmarkHandler(QPopupMenu* menu);
+ KBabelBookmarkHandler(TQPopupMenu* menu);
/**
* Add a bookmark.
@@ -113,20 +113,20 @@ class KBabelBookmarkHandler : public QObject
* @param msgindex the index of the bookmark's msgid.
* @param msgtext the msgindex of the bookmark to be added.
*/
- void addBookmark(int msgindex, QString msgtext);
+ void addBookmark(int msgindex, TQString msgtext);
/**
* Provide the handler with a list of bookmarks.
* Especially useful when creating a new view of the KBabel window.
*
* @param list the list to be copied.
*/
- void setBookmarks(QPtrList<KBabelBookmark> list);
+ void setBookmarks(TQPtrList<KBabelBookmark> list);
/**
* Return the list of bookmarks for a new view of the KBabel window.
*
* @return the internal list of bookmarks
*/
- QPtrList<KBabelBookmark> bookmarks() const;
+ TQPtrList<KBabelBookmark> bookmarks() const;
public slots:
/**
@@ -145,11 +145,11 @@ class KBabelBookmarkHandler : public QObject
/**
* The pointer to the menu.
*/
- QPopupMenu* _menu;
+ TQPopupMenu* _menu;
/**
* The internal list for storing the bookmarks.
*/
- QPtrList<KBabelBookmark> _list;
+ TQPtrList<KBabelBookmark> _list;
};
#endif // KBBOOKMARKHANDLER_H