diff options
Diffstat (limited to 'kmail/templateparser.cpp')
-rw-r--r-- | kmail/templateparser.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/templateparser.cpp b/kmail/templateparser.cpp index d2dbd3188..9c6157916 100644 --- a/kmail/templateparser.cpp +++ b/kmail/templateparser.cpp @@ -1125,12 +1125,12 @@ TQString TemplateParser::pipe( const TQString &cmd, const TQString &buf ) proc << KShell::splitArgs( cmd, KShell::TildeExpand ); proc.setUseShell( true ); - connect( &proc, TQT_SIGNAL( receivedStdout( TDEProcess *, char *, int ) ), - this, TQT_SLOT( onReceivedStdout( TDEProcess *, char *, int ) ) ); - connect( &proc, TQT_SIGNAL( receivedStderr( TDEProcess *, char *, int ) ), - this, TQT_SLOT( onReceivedStderr( TDEProcess *, char *, int ) ) ); - connect( &proc, TQT_SIGNAL( wroteStdin( TDEProcess * ) ), - this, TQT_SLOT( onWroteStdin( TDEProcess * ) ) ); + connect( &proc, TQ_SIGNAL( receivedStdout( TDEProcess *, char *, int ) ), + this, TQ_SLOT( onReceivedStdout( TDEProcess *, char *, int ) ) ); + connect( &proc, TQ_SIGNAL( receivedStderr( TDEProcess *, char *, int ) ), + this, TQ_SLOT( onReceivedStderr( TDEProcess *, char *, int ) ) ); + connect( &proc, TQ_SIGNAL( wroteStdin( TDEProcess * ) ), + this, TQ_SLOT( onWroteStdin( TDEProcess * ) ) ); if ( proc.start( TDEProcess::NotifyOnExit, TDEProcess::All ) ) { |