summaryrefslogtreecommitdiffstats
path: root/src/queryviewdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/queryviewdlg.cpp')
-rw-r--r--src/queryviewdlg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/queryviewdlg.cpp b/src/queryviewdlg.cpp
index f9ddb84..bb157e3 100644
--- a/src/queryviewdlg.cpp
+++ b/src/queryviewdlg.cpp
@@ -47,11 +47,11 @@ QueryViewDlg::QueryViewDlg(uint nFlags, TQWidget* pParent,
m_pDriver = new QueryViewDriver(m_pView, this);
// Show the dialogue when instructed by the driver
- connect(m_pView, SIGNAL(needToShow()), this, SLOT(slotShow()));
+ connect(m_pView, TQ_SIGNAL(needToShow()), this, TQ_SLOT(slotShow()));
// Propagate the lineRequested() signal from the QueryView object
- connect(m_pView, SIGNAL(lineRequested(const TQString&, uint)), this,
- SLOT(slotLineRequested(const TQString&, uint)));
+ connect(m_pView, TQ_SIGNAL(lineRequested(const TQString&, uint)), this,
+ TQ_SLOT(slotLineRequested(const TQString&, uint)));
// Make the dialogue modal
setModal(true);