From 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Tue, 8 Oct 2013 00:13:25 +0200 Subject: Initial TQt conversion --- src/filelist.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/filelist.h') 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 +#include #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 -- cgit v1.2.1