summaryrefslogtreecommitdiffstats
path: root/src/languages/processchain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/languages/processchain.cpp')
-rw-r--r--src/languages/processchain.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/languages/processchain.cpp b/src/languages/processchain.cpp
index 83757aa..a0d8e40 100644
--- a/src/languages/processchain.cpp
+++ b/src/languages/processchain.cpp
@@ -57,7 +57,7 @@ ProcessChain::ProcessChain( ProcessOptions options, KTechlab * ktechlab, const c
target = options.targetFile();
LanguageManager::self()->logView()->addOutput( i18n("Building: %1").arg( target ), LogView::ot_important );
- TQTimer::singleShot( 0, this, TQT_SLOT(compile()) );
+ TQTimer::singleShot( 0, this, TQ_SLOT(compile()) );
}
@@ -267,8 +267,8 @@ a * ProcessChain::b( ) \
if ( !c ) \
{ \
c = new a( this, m_pKTechlab ); \
- connect( c, TQT_SIGNAL(processSucceeded(Language* )), this, TQT_SLOT(slotFinishedCompile(Language* )) ); \
- connect( c, TQT_SIGNAL(processFailed(Language* )), this, TQT_SIGNAL(failed()) ); \
+ connect( c, TQ_SIGNAL(processSucceeded(Language* )), this, TQ_SLOT(slotFinishedCompile(Language* )) ); \
+ connect( c, TQ_SIGNAL(processFailed(Language* )), this, TQ_SIGNAL(failed()) ); \
} \
return c; \
}
@@ -311,8 +311,8 @@ void ProcessListChain::slotProcessChainSuccessful()
ProcessChain * pc = LanguageManager::self()->compile(po);
- connect( pc, TQT_SIGNAL(successful()), this, TQT_SLOT(slotProcessChainSuccessful()) );
- connect( pc, TQT_SIGNAL(failed()), this, TQT_SLOT(slotProcessChainFailed()) );
+ connect( pc, TQ_SIGNAL(successful()), this, TQ_SLOT(slotProcessChainSuccessful()) );
+ connect( pc, TQ_SIGNAL(failed()), this, TQ_SLOT(slotProcessChainFailed()) );
}