diff options
author | Jarek Kobus <[email protected]> | 2022-02-28 16:27:46 +0100 |
---|---|---|
committer | Jarek Kobus <[email protected]> | 2022-03-02 09:52:47 +0000 |
commit | 53095f666f81b7320d7d94a90d9d37f995173a25 (patch) | |
tree | f680304be65b83e56d4de90c80afd2f52ff94f60 /src/plugins/remotelinux/remotelinuxpackageinstaller.cpp | |
parent | b5cf3186a3e6b3aa9c26922b6b3ac18ff2903f6a (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.cpp | 2 |
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); |