diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:20:30 +0000 |
commit | 28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c (patch) | |
tree | a2f011f22aa31d0839c6e2118501b7a6d2f2ae96 /ksayit/src/ksayitbookmarkhandler.h | |
parent | 0285229d858c8f03cde7354c679a752598cf4515 (diff) | |
download | tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.tar.gz tdeaccessibility-28bf3cbba4139c8a0f81dc9d1a2f6c4ed724f22c.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeaccessibility@1157633 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksayit/src/ksayitbookmarkhandler.h')
-rw-r--r-- | ksayit/src/ksayitbookmarkhandler.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ksayit/src/ksayitbookmarkhandler.h b/ksayit/src/ksayitbookmarkhandler.h index edab6d6..018ea39 100644 --- a/ksayit/src/ksayitbookmarkhandler.h +++ b/ksayit/src/ksayitbookmarkhandler.h @@ -13,7 +13,7 @@ #define KSAYITBOOKMARKHANDLER_H // Qt includes -#include <qstring.h> +#include <tqstring.h> // KDE includes #include <kbookmarkmanager.h> @@ -40,14 +40,14 @@ public: * Called when a bookmark in the menu was clicked. * \param url The URL of the selected bookmark. */ - void openBookmarkURL(const QString &url); + void openBookmarkURL(const TQString &url); /** * Reimplemented from base class.\n * Returns the Title when a new bookmark is about to be created. * \returns The title of the bookmark. */ - QString currentTitle() const; + TQString currentTitle() const; /** @@ -55,20 +55,20 @@ public: * Returns the URL when a new bookmark is about to be created. * \returns The URL of the bookmark. */ - QString currentURL() const; + TQString currentURL() const; /** * Sets ID and title of the current TreeView item. * \param ID The unique ID of the item. * \param title The bookmark title of the item. */ - void notifyBookmarkHandler(const QString &ID, const QString &title); + void notifyBookmarkHandler(const TQString &ID, const TQString &title); /** * Deletes the bookmark designated by the given url. * \param url The url of the bookmark. */ - void deleteBookmark(const QString &url, const QString &title); + void deleteBookmark(const TQString &url, const TQString &title); /** * Iterates recursively through all bookmarks below the @@ -92,7 +92,7 @@ private: KBookmark &bookmark, KBookmarkGroup &group, const KBookmarkGroup &bkGroup, - const QString &url); + const TQString &url); /** * Searches the Bookmark designted by its URL. @@ -108,10 +108,10 @@ private: KBookmark &bookmark, KBookmarkGroup &group, const KBookmarkGroup &bkGroup, - const QString &title); + const TQString &title); private: - QString m_ID; - QString m_title; + TQString m_ID; + TQString m_title; KBookmarkManager *m_bkManager; KSayItApp *m_parent; |