diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /khelpcenter/toc.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khelpcenter/toc.h')
-rw-r--r-- | khelpcenter/toc.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/khelpcenter/toc.h b/khelpcenter/toc.h index 09971adbd..6d01fd2ba 100644 --- a/khelpcenter/toc.h +++ b/khelpcenter/toc.h @@ -22,9 +22,9 @@ #include "navigatoritem.h" -#include <qdom.h> -#include <qlistview.h> -#include <qobject.h> +#include <tqdom.h> +#include <tqlistview.h> +#include <tqobject.h> class KProcess; @@ -36,17 +36,17 @@ class TOC : public QObject public: TOC( NavigatorItem *parentItem ); - QString application() const { return m_application; } - void setApplication( const QString &application ) { m_application = application; } + TQString application() const { return m_application; } + void setApplication( const TQString &application ) { m_application = application; } public slots: - void build( const QString &file ); + void build( const TQString &file ); signals: - void itemSelected( const QString &url ); + void itemSelected( const TQString &url ); private slots: - void slotItemSelected( QListViewItem *item ); + void slotItemSelected( TQListViewItem *item ); void meinprocExited( KProcess *meinproc ); private: @@ -55,13 +55,13 @@ class TOC : public QObject CacheStatus cacheStatus() const; int sourceFileCTime() const; int cachedCTime() const; - QDomElement childElement( const QDomElement &e, const QString &name ); + TQDomElement childElement( const TQDomElement &e, const TQString &name ); void buildCache(); void fillTree(); - QString m_application; - QString m_cacheFile; - QString m_sourceFile; + TQString m_application; + TQString m_cacheFile; + TQString m_sourceFile; NavigatorItem *m_parentItem; }; |