summaryrefslogtreecommitdiffstats
path: root/src/symbolcompletion.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-28 16:37:45 +0900
committerMichele Calgaro <[email protected]>2023-12-31 22:20:37 +0900
commitb035a6c47ef46ee310c0574ecd3bf6eb15cbca5c (patch)
tree0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/symbolcompletion.cpp
parent3fb419090fd6a53dd1529a1707710a3b0ebea5ea (diff)
downloadkscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.tar.gz
kscope-b035a6c47ef46ee310c0574ecd3bf6eb15cbca5c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 11f3716a1c82b43f92dc32083101558f3ec47f27)
Diffstat (limited to 'src/symbolcompletion.cpp')
-rw-r--r--src/symbolcompletion.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/symbolcompletion.cpp b/src/symbolcompletion.cpp
index ee603b4..6e1dd30 100644
--- a/src/symbolcompletion.cpp
+++ b/src/symbolcompletion.cpp
@@ -51,16 +51,16 @@ SymbolCompletion::SymbolCompletion(SymbolCompletion::Interface* pEditor,
m_pAutoCompTimer = new TQTimer(this);
// Add entries to the completion list when they are available
- connect(m_pCscope, SIGNAL(dataReady(FrontendToken*)), this,
- SLOT(slotAddEntry(FrontendToken*)));
+ connect(m_pCscope, TQ_SIGNAL(dataReady(FrontendToken*)), this,
+ TQ_SLOT(slotAddEntry(FrontendToken*)));
// Show the completion list when the query finishes
- connect(m_pCscope, SIGNAL(finished(uint)), this,
- SLOT(slotQueryFinished(uint)));
+ connect(m_pCscope, TQ_SIGNAL(finished(uint)), this,
+ TQ_SLOT(slotQueryFinished(uint)));
// Initiate automatic symbol completion when timer expires
- connect(m_pAutoCompTimer, SIGNAL(timeout()), this,
- SLOT(slotAutoCompleteTimeout()));
+ connect(m_pAutoCompTimer, TQ_SIGNAL(timeout()), this,
+ TQ_SLOT(slotAutoCompleteTimeout()));
}
/**
@@ -262,9 +262,9 @@ void SymbolCompletion::slotQueryFinished(uint /* nRecords */)
// Insert the correct part of the completed symbol, when chosen by the
// user
connect(m_pCCObject,
- SIGNAL(filterInsertString(KTextEditor::CompletionEntry*, TQString*)),
+ TQ_SIGNAL(filterInsertString(KTextEditor::CompletionEntry*, TQString*)),
this,
- SLOT(slotFilterInsert(KTextEditor::CompletionEntry*, TQString*)));
+ TQ_SLOT(slotFilterInsert(KTextEditor::CompletionEntry*, TQString*)));
// Check the number of entries in the list
if (nEntryCount == 0) {