From 11f3716a1c82b43f92dc32083101558f3ec47f27 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 28 Dec 2023 16:37:45 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro --- src/queryviewdriver.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/queryviewdriver.cpp') 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())); } /** -- cgit v1.2.1