diff options
Diffstat (limited to 'src/fileview.h')
-rw-r--r-- | src/fileview.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fileview.h b/src/fileview.h index 5fc1fe3..ca78783 100644 --- a/src/fileview.h +++ b/src/fileview.h @@ -45,7 +45,7 @@ class FileView : public FileViewLayout Q_OBJECT public: - FileView(QWidget* pParent = 0, const char* szName = 0, WFlags fl = 0); + FileView(TQWidget* pParent = 0, const char* szName = 0, WFlags fl = 0); ~FileView(); /** @@ -53,7 +53,7 @@ public: */ FileList* getFileList() { return m_pFileList; } - void setRoot(const QString&); + void setRoot(const TQString&); void clear(); signals: @@ -63,17 +63,17 @@ 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); private: /** The current branch in the file tree. */ KFileTreeBranch* m_pCurBranch; /** The current root of the file tree. */ - QString m_sRoot; + TQString m_sRoot; private slots: - void slotTreeItemSelected(QListViewItem*); + void slotTreeItemSelected(TQListViewItem*); }; #endif |