diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:34:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:34:58 +0900 |
commit | 184496dac00969ac18f548eb465a07e929522504 (patch) | |
tree | a56ab8cba4d88dc39f2203a9e86e4034bde8b86a /krArc/krarc.h | |
parent | a309e299010cd4bee39cb00b372dae5964d580b8 (diff) | |
download | krusader-184496dac00969ac18f548eb465a07e929522504.tar.gz krusader-184496dac00969ac18f548eb465a07e929522504.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'krArc/krarc.h')
-rw-r--r-- | krArc/krarc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krArc/krarc.h b/krArc/krarc.h index c989fd9..6b9ca6c 100644 --- a/krArc/krarc.h +++ b/krArc/krarc.h @@ -109,10 +109,10 @@ class KrShellProcess : public KShellProcess { public: KrShellProcess() : KShellProcess(), errorMsg( TQString() ), outputMsg( TQString() ) { - connect(this,TQT_SIGNAL(receivedStderr(TDEProcess*,char*,int)), - this,TQT_SLOT(receivedErrorMsg(TDEProcess*,char*,int)) ); - connect(this,TQT_SIGNAL(receivedStdout(TDEProcess*,char*,int)), - this,TQT_SLOT(receivedOutputMsg(TDEProcess*,char*,int)) ); + connect(this,TQ_SIGNAL(receivedStderr(TDEProcess*,char*,int)), + this,TQ_SLOT(receivedErrorMsg(TDEProcess*,char*,int)) ); + connect(this,TQ_SIGNAL(receivedStdout(TDEProcess*,char*,int)), + this,TQ_SLOT(receivedOutputMsg(TDEProcess*,char*,int)) ); } TQString getErrorMsg() { |