summaryrefslogtreecommitdiffstats
path: root/kmail/templateparser.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:33:20 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 12:43:48 +0900
commit3b3f9ec8f31978030c17309fae48335bea5c1587 (patch)
tree0b493383a1501860371aacd792ec6fc08d595824 /kmail/templateparser.cpp
parent99e6e1d1f43610c3573e9824a2a8a38f69930cd0 (diff)
downloadtdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.tar.gz
tdepim-3b3f9ec8f31978030c17309fae48335bea5c1587.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmail/templateparser.cpp')
-rw-r--r--kmail/templateparser.cpp12
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 ) ) {