aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs')
-rw-r--r--src/libs/ssh/sshremoteprocessrunner.cpp4
-rw-r--r--src/libs/ssh/sshremoteprocessrunner.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/ssh/sshremoteprocessrunner.cpp b/src/libs/ssh/sshremoteprocessrunner.cpp
index a6cc6b6ba0d..d0e23b6a4b3 100644
--- a/src/libs/ssh/sshremoteprocessrunner.cpp
+++ b/src/libs/ssh/sshremoteprocessrunner.cpp
@@ -139,7 +139,7 @@ void SshRemoteProcessRunner::handleProcessStarted()
QTC_ASSERT(d->m_state == Connected, return);
setState(ProcessRunning);
- emit processStarted();
+ emit started();
}
void SshRemoteProcessRunner::handleProcessFinished()
@@ -148,7 +148,7 @@ void SshRemoteProcessRunner::handleProcessFinished()
d->m_exitCode = d->m_process->exitCode();
d->m_errorString = d->m_process->errorString();
setState(Inactive);
- emit processClosed();
+ emit finished();
}
void SshRemoteProcessRunner::setState(int newState)
diff --git a/src/libs/ssh/sshremoteprocessrunner.h b/src/libs/ssh/sshremoteprocessrunner.h
index c4174007ab0..2d9fe590c93 100644
--- a/src/libs/ssh/sshremoteprocessrunner.h
+++ b/src/libs/ssh/sshremoteprocessrunner.h
@@ -54,10 +54,10 @@ public:
signals:
void connectionError();
- void processStarted();
+ void started();
+ void finished();
void readyReadStandardOutput();
void readyReadStandardError();
- void processClosed();
private:
void handleConnected();