summaryrefslogtreecommitdiffstats
path: root/src/queryviewdriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/queryviewdriver.cpp')
-rw-r--r--src/queryviewdriver.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/queryviewdriver.cpp b/src/queryviewdriver.cpp
index eef943c..59ad92a 100644
--- a/src/queryviewdriver.cpp
+++ b/src/queryviewdriver.cpp
@@ -46,18 +46,18 @@ QueryViewDriver::QueryViewDriver(QueryView* pView, TQObject* pParent,
m_pCscope = new CscopeFrontend();
// Add records to the page when Cscope outputs them
- connect(m_pCscope, SIGNAL(dataReady(FrontendToken*)), this,
- SLOT(slotDataReady(FrontendToken*)));
+ connect(m_pCscope, TQ_SIGNAL(dataReady(FrontendToken*)), this,
+ TQ_SLOT(slotDataReady(FrontendToken*)));
// Report progress information
- connect(m_pCscope, SIGNAL(progress(int, int)), this,
- SLOT(slotProgress(int, int)));
+ connect(m_pCscope, TQ_SIGNAL(progress(int, int)), this,
+ TQ_SLOT(slotProgress(int, int)));
// Perform tasks when the query process terminates
- connect(m_pCscope, SIGNAL(finished(uint)), this,
- SLOT(slotFinished(uint)));
+ connect(m_pCscope, TQ_SIGNAL(finished(uint)), this,
+ TQ_SLOT(slotFinished(uint)));
- connect(m_pView, SIGNAL(destroyed()), this, SLOT(slotViewClosed()));
+ connect(m_pView, TQ_SIGNAL(destroyed()), this, TQ_SLOT(slotViewClosed()));
}
/**