diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 | 
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-28 16:37:45 +0900 | 
| commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
| tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/symbolcompletion.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 <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/symbolcompletion.cpp')
| -rw-r--r-- | src/symbolcompletion.cpp | 16 | 
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) { | 
