summaryrefslogtreecommitdiffstats
path: root/src/helpers/sshagent.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:51:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:51:28 +0900
commit9ebb061777b4fed6107d056528ff19932d1c0379 (patch)
treee6759e2a527bbabcd6d90e9a92adcd3b5bae738c /src/helpers/sshagent.cpp
parent70a9b1f3fb15c9725f1ad6ba5ffa4b3c1554e97c (diff)
downloadtdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.tar.gz
tdesvn-9ebb061777b4fed6107d056528ff19932d1c0379.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/helpers/sshagent.cpp')
-rw-r--r--src/helpers/sshagent.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/helpers/sshagent.cpp b/src/helpers/sshagent.cpp
index 04271c3..e42b071 100644
--- a/src/helpers/sshagent.cpp
+++ b/src/helpers/sshagent.cpp
@@ -134,10 +134,10 @@ bool SshAgent::addSshIdentities(bool force)
proc << "ssh-add";
- connect(&proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
- TQT_SLOT(slotReceivedStdout(TDEProcess*, char*, int)));
- connect(&proc, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)),
- TQT_SLOT(slotReceivedStderr(TDEProcess*, char*, int)));
+ connect(&proc, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
+ TQ_SLOT(slotReceivedStdout(TDEProcess*, char*, int)));
+ connect(&proc, TQ_SIGNAL(receivedStderr(TDEProcess*, char*, int)),
+ TQ_SLOT(slotReceivedStderr(TDEProcess*, char*, int)));
proc.start(TDEProcess::DontCare, TDEProcess::AllOutput);
@@ -238,12 +238,12 @@ bool SshAgent::startSshAgent()
proc << "ssh-agent";
- connect(&proc, TQT_SIGNAL(processExited(TDEProcess*)),
- TQT_SLOT(slotProcessExited(TDEProcess*)));
- connect(&proc, TQT_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
- TQT_SLOT(slotReceivedStdout(TDEProcess*, char*, int)));
- connect(&proc, TQT_SIGNAL(receivedStderr(TDEProcess*, char*, int)),
- TQT_SLOT(slotReceivedStderr(TDEProcess*, char*, int)) );
+ connect(&proc, TQ_SIGNAL(processExited(TDEProcess*)),
+ TQ_SLOT(slotProcessExited(TDEProcess*)));
+ connect(&proc, TQ_SIGNAL(receivedStdout(TDEProcess*, char*, int)),
+ TQ_SLOT(slotReceivedStdout(TDEProcess*, char*, int)));
+ connect(&proc, TQ_SIGNAL(receivedStderr(TDEProcess*, char*, int)),
+ TQ_SLOT(slotReceivedStderr(TDEProcess*, char*, int)) );
proc.start(TDEProcess::NotifyOnExit, TDEProcess::All);