diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-10-08 00:13:25 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-10-08 05:14:53 +0200 |
commit | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch) | |
tree | 770861aa9033e1dc6c5168358194ff85b32dd429 /src/filelist.h | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/filelist.h')
-rw-r--r-- | src/filelist.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/filelist.h b/src/filelist.h index 8585dc6..59bad1d 100644 --- a/src/filelist.h +++ b/src/filelist.h @@ -28,7 +28,7 @@ #ifndef FILELIST_H #define FILELIST_H -#include <qwidget.h> +#include <ntqwidget.h> #include "searchlist.h" #include "projectmanager.h" @@ -45,15 +45,15 @@ class FileList : public SearchList, public FileListTarget Q_OBJECT public: - FileList(QWidget* pParent = 0, const char* szName = 0); + FileList(TQWidget* pParent = 0, const char* szName = 0); ~FileList(); - virtual void addItem(const QString&); - bool findFile(const QString&); + virtual void addItem(const TQString&); + bool findFile(const TQString&); void clear(); void applyPrefs(); - void setRoot(const QString&); - virtual bool getTip(QListViewItem*, QString&); + void setRoot(const TQString&); + virtual bool getTip(TQListViewItem*, TQString&); signals: /** @@ -62,14 +62,14 @@ signals: * @param sPath The full path of the selected file * @param nLine Line number, always set to 0 */ - void fileRequested(const QString& sPath, uint nLine); + void fileRequested(const TQString& sPath, uint nLine); protected: - virtual void processItemSelected(QListViewItem*); + virtual void processItemSelected(TQListViewItem*); private: /** A common root path for all items in the list. */ - QString m_sRoot; + TQString m_sRoot; }; #endif |