summaryrefslogtreecommitdiffstats
path: root/src/symbolcompletion.cpp
diff options
context:
space:
mode:
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) {