summaryrefslogtreecommitdiffstats
path: root/kommander/editor/assistproc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/editor/assistproc.cpp')
-rw-r--r--kommander/editor/assistproc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/editor/assistproc.cpp b/kommander/editor/assistproc.cpp
index 8fbf61f3..580b2b2d 100644
--- a/kommander/editor/assistproc.cpp
+++ b/kommander/editor/assistproc.cpp
@@ -23,14 +23,14 @@ AssistProc::AssistProc( TQObject *parent, const char *name, const TQString &path
: TQProcess( parent, name )
{
assistantPath = path;
- connect( this, TQT_SIGNAL(readyReadStdout()), this, TQT_SLOT(processOutput()) );
- connect( this, TQT_SIGNAL(readyReadStderr()), this, TQT_SLOT(processErrOutput()) );
+ connect( this, TQ_SIGNAL(readyReadStdout()), this, TQ_SLOT(processOutput()) );
+ connect( this, TQ_SIGNAL(readyReadStderr()), this, TQ_SLOT(processErrOutput()) );
}
AssistProc::~AssistProc()
{
tryTerminate();
- TQTimer::singleShot( 5000, this, TQT_SLOT(kill())); // If busy, kill in 5 sec...
+ TQTimer::singleShot( 5000, this, TQ_SLOT(kill())); // If busy, kill in 5 sec...
}
bool AssistProc::run( const TQString &path )