diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/queryviewdriver.cpp | |
parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/queryviewdriver.cpp')
-rw-r--r-- | src/queryviewdriver.cpp | 14 |
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())); } /** |