diff options
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); |