diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:34:58 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-07 20:54:01 +0900 |
commit | 1570bf7f376a1c76beab3c20e0556d3b8236eae9 (patch) | |
tree | 1ecdb93d314c4e55c5e49515f960af119a490d83 /krArc/krarc.h | |
parent | 2c9c9759a567b58fc3609a639c2c185aa39b1f67 (diff) | |
download | krusader-1570bf7f376a1c76beab3c20e0556d3b8236eae9.tar.gz krusader-1570bf7f376a1c76beab3c20e0556d3b8236eae9.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 184496dac00969ac18f548eb465a07e929522504)
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() { |