diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-08-02 19:23:46 +0000 |
commit | eba47f8f0637f451e21348187591e1f1fd58ac74 (patch) | |
tree | 448f10b95c656604acc331a3236c1e59bde5c1ad /kviewshell/bookmark.h | |
parent | c7e8736c69373f48b0401319757c742e8607431a (diff) | |
download | tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.tar.gz tdegraphics-eba47f8f0637f451e21348187591e1f1fd58ac74.zip |
TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1158446 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kviewshell/bookmark.h')
-rw-r--r-- | kviewshell/bookmark.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kviewshell/bookmark.h b/kviewshell/bookmark.h index 1df245fb..a1a310fb 100644 --- a/kviewshell/bookmark.h +++ b/kviewshell/bookmark.h @@ -24,8 +24,8 @@ #include "anchor.h" -#include <qptrlist.h> -#include <qstring.h> +#include <tqptrlist.h> +#include <tqstring.h> /** \brief Bookmark @@ -54,13 +54,13 @@ class Bookmark { @param pos an Anchor that specifies the position of the bookmark */ - Bookmark(const QString &text, const Anchor &pos) { + Bookmark(const TQString &text, const Anchor &pos) { Bookmark(); bookmarkText = text; position = pos; } - /** Convenience funtion, behaves as Bookmark(const QString &text, const Anchor &pos) + /** Convenience funtion, behaves as Bookmark(const TQString &text, const Anchor &pos) @param text name of the bookmark, as it appears in the GUI @@ -70,7 +70,7 @@ class Bookmark { @param distance_from_top position on the page, distance from top of the page */ - Bookmark(const QString& text, const PageNumber& page, const Length& distance_from_top) { + Bookmark(const TQString& text, const PageNumber& page, const Length& distance_from_top) { Bookmark(); bookmarkText = text; position.page = page; @@ -79,7 +79,7 @@ class Bookmark { /** Label of the bookmark as it will appear in the GUI to the user, such as "Section 1", "Theorem 12", etc. */ - QString bookmarkText; + TQString bookmarkText; /** The anchor that specifies the position of the bookmark */ Anchor position; @@ -95,7 +95,7 @@ class Bookmark { true. Thus, extra care must be taken when copying this list. Otherwise, a segfault could result. */ - QPtrList<Bookmark> subordinateBookmarks; + TQPtrList<Bookmark> subordinateBookmarks; // Returns true if the bookmark is valid, false otherwise. A // bookmark is valid if the text is not empty and the anchor is |