diff options
author | Slávek Banko <[email protected]> | 2013-10-08 00:13:25 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-10-08 05:14:53 +0200 |
commit | 84f5a315c3429b47a7eff15e626e2efdbe4f6e5e (patch) | |
tree | 770861aa9033e1dc6c5168358194ff85b32dd429 /src/queryviewdlg.h | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/queryviewdlg.h')
-rw-r--r-- | src/queryviewdlg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/queryviewdlg.h b/src/queryviewdlg.h index fc1c2f7..f78ee21 100644 --- a/src/queryviewdlg.h +++ b/src/queryviewdlg.h @@ -50,7 +50,7 @@ class QueryViewDlg : public QueryViewLayout Q_OBJECT public: - QueryViewDlg(uint nFlags = 0, QWidget* pParent = 0, + QueryViewDlg(uint nFlags = 0, TQWidget* pParent = 0, const char* szName = 0); ~QueryViewDlg(); @@ -58,7 +58,7 @@ public: enum { CloseOnSelect = 0x1, DestroyOnClose = 0x2, DestroyOnSelect = CloseOnSelect | DestroyOnClose }; - void query(uint, const QString&, bool bCase = true); + void query(uint, const TQString&, bool bCase = true); QueryView::Iterator getIterator(); @@ -69,7 +69,7 @@ signals: * @param sFile The "File" field of the selected record * @param nLine The "Line" field of the selected record */ - void lineRequested(const QString& sFile, uint nLine); + void lineRequested(const TQString& sFile, uint nLine); private: /** Flags the control the behaviour of the dialogue. */ @@ -81,7 +81,7 @@ private: private slots: void slotShow(); - void slotLineRequested(const QString&, uint); + void slotLineRequested(const TQString&, uint); }; #endif |