summaryrefslogtreecommitdiffstats
path: root/src/fileview.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-10-08 00:13:25 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-10-08 05:14:53 +0200
commit84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch)
tree770861aa9033e1dc6c5168358194ff85b32dd429 /src/fileview.h
parent57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff)
downloadkscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz
kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip
Initial TQt conversion
Diffstat (limited to 'src/fileview.h')
-rw-r--r--src/fileview.h10
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