summaryrefslogtreecommitdiffstats
path: root/src/queryviewdriver.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:37:45 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-31 22:20:37 +0900
commitb035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/queryviewdriver.cpp
parent3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff)
downloadkscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz
kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
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()));
}
/**