From 1c65be77cd84b454f3fe69f211849a712ad99ed0 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Fri, 12 Jan 2024 10:51:50 +0900 Subject: Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines Signed-off-by: Michele Calgaro (cherry picked from commit a4241b7911d2e0b36edfb02f616b8b282050c0ec) --- ksysguard/gui/ksgrd/SensorShellAgent.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'ksysguard/gui/ksgrd/SensorShellAgent.cpp') diff --git a/ksysguard/gui/ksgrd/SensorShellAgent.cpp b/ksysguard/gui/ksgrd/SensorShellAgent.cpp index 7e137ad56..c398be32f 100644 --- a/ksysguard/gui/ksgrd/SensorShellAgent.cpp +++ b/ksysguard/gui/ksgrd/SensorShellAgent.cpp @@ -55,14 +55,14 @@ bool SensorShellAgent::start( const TQString &host, const TQString &shell, mShell = shell; mCommand = command; - connect( mDaemon, TQT_SIGNAL( processExited( TDEProcess* ) ), - TQT_SLOT( daemonExited( TDEProcess* ) ) ); - connect( mDaemon, TQT_SIGNAL( receivedStdout( TDEProcess*, char*, int ) ), - TQT_SLOT( msgRcvd( TDEProcess*, char*, int ) ) ); - connect( mDaemon, TQT_SIGNAL( receivedStderr( TDEProcess*, char*, int ) ), - TQT_SLOT( errMsgRcvd( TDEProcess*, char*, int ) ) ); - connect( mDaemon, TQT_SIGNAL( wroteStdin( TDEProcess* ) ), - TQT_SLOT( msgSent( TDEProcess* ) ) ); + connect( mDaemon, TQ_SIGNAL( processExited( TDEProcess* ) ), + TQ_SLOT( daemonExited( TDEProcess* ) ) ); + connect( mDaemon, TQ_SIGNAL( receivedStdout( TDEProcess*, char*, int ) ), + TQ_SLOT( msgRcvd( TDEProcess*, char*, int ) ) ); + connect( mDaemon, TQ_SIGNAL( receivedStderr( TDEProcess*, char*, int ) ), + TQ_SLOT( errMsgRcvd( TDEProcess*, char*, int ) ) ); + connect( mDaemon, TQ_SIGNAL( wroteStdin( TDEProcess* ) ), + TQ_SLOT( msgSent( TDEProcess* ) ) ); TQString cmd; if ( !command.isEmpty() ) -- cgit v1.2.1