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/queryviewdlg.cpp | |
parent | 57d8bb3d12aed373eee08915f0ff19f5233aabe3 (diff) | |
download | kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.tar.gz kscope-84f5a315c3429b47a7eff15e626e2efdbe4f6e5e.zip |
Initial TQt conversion
Diffstat (limited to 'src/queryviewdlg.cpp')
-rw-r--r-- | src/queryviewdlg.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/queryviewdlg.cpp b/src/queryviewdlg.cpp index 93cd85e..f9ddb84 100644 --- a/src/queryviewdlg.cpp +++ b/src/queryviewdlg.cpp @@ -34,7 +34,7 @@ * @param pParent The parent widget * @param szName The widget's name */ -QueryViewDlg::QueryViewDlg(uint nFlags, QWidget* pParent, +QueryViewDlg::QueryViewDlg(uint nFlags, TQWidget* pParent, const char* szName) : QueryViewLayout(pParent, szName), m_nFlags(nFlags) @@ -50,8 +50,8 @@ QueryViewDlg::QueryViewDlg(uint nFlags, QWidget* pParent, connect(m_pView, SIGNAL(needToShow()), this, SLOT(slotShow())); // Propagate the lineRequested() signal from the QueryView object - connect(m_pView, SIGNAL(lineRequested(const QString&, uint)), this, - SLOT(slotLineRequested(const QString&, uint))); + connect(m_pView, SIGNAL(lineRequested(const TQString&, uint)), this, + SLOT(slotLineRequested(const TQString&, uint))); // Make the dialogue modal setModal(true); @@ -70,7 +70,7 @@ QueryViewDlg::~QueryViewDlg() * @param sText The query's text * @param bCase true for case-sensitive queries, false otherwise */ -void QueryViewDlg::query(uint nType, const QString& sText, bool bCase) +void QueryViewDlg::query(uint nType, const TQString& sText, bool bCase) { m_pDriver->query(nType, sText, bCase); } @@ -91,7 +91,7 @@ void QueryViewDlg::slotShow() * This slot is connected to the lineRequested() signal emitted by the * QueryView widget. */ -void QueryViewDlg::slotLineRequested(const QString& sFileName, uint nLine) +void QueryViewDlg::slotLineRequested(const TQString& sFileName, uint nLine) { emit lineRequested(sFileName, nLine); |