aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2022-02-28 16:27:46 +0100
committerJarek Kobus <[email protected]>2022-03-02 09:52:47 +0000
commit53095f666f81b7320d7d94a90d9d37f995173a25 (patch)
treef680304be65b83e56d4de90c80afd2f52ff94f60 /src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
parentb5cf3186a3e6b3aa9c26922b6b3ac18ff2903f6a (diff)
SshRemoteProcessRunner: Unify API
Make the API more similar to QtcProcess API. Rename signals to started() and finished(). Change-Id: I01f3a148749b666b8f145d8769222a234ccc9bce Reviewed-by: hjk <[email protected]> Reviewed-by: <[email protected]>
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxpackageinstaller.cpp')
-rw-r--r--src/plugins/remotelinux/remotelinuxpackageinstaller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp b/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
index 69ad1b0eb3f..75a36ea2012 100644
--- a/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
+++ b/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
@@ -71,7 +71,7 @@ void AbstractRemoteLinuxPackageInstaller::installPackage(const IDevice::ConstPtr
this, &AbstractRemoteLinuxPackageInstaller::handleInstallerOutput);
connect(d->installer, &SshRemoteProcessRunner::readyReadStandardError,
this, &AbstractRemoteLinuxPackageInstaller::handleInstallerErrorOutput);
- connect(d->installer, &SshRemoteProcessRunner::processClosed,
+ connect(d->installer, &SshRemoteProcessRunner::finished,
this, &AbstractRemoteLinuxPackageInstaller::handleInstallationFinished);
QString cmdLine = installCommandLine(packageFilePath);