aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/remotelinux/remotelinuxpackageinstaller.cpp')
-rw-r--r--src/plugins/remotelinux/remotelinuxpackageinstaller.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp b/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
index d20be3f6acb..fca20e1aa77 100644
--- a/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
+++ b/src/plugins/remotelinux/remotelinuxpackageinstaller.cpp
@@ -45,8 +45,8 @@ public:
bool isRunning;
IDevice::ConstPtr deviceConfig;
- QSsh::SshRemoteProcessRunner *installer;
- QSsh::SshRemoteProcessRunner *killProcess;
+ SshRemoteProcessRunner *installer;
+ SshRemoteProcessRunner *killProcess;
};
} // namespace Internal
@@ -70,13 +70,13 @@ void AbstractRemoteLinuxPackageInstaller::installPackage(const IDevice::ConstPtr
prepareInstallation();
if (!d->installer)
d->installer = new SshRemoteProcessRunner(this);
- connect(d->installer, &QSsh::SshRemoteProcessRunner::connectionError,
+ connect(d->installer, &SshRemoteProcessRunner::connectionError,
this, &AbstractRemoteLinuxPackageInstaller::handleConnectionError);
- connect(d->installer, &QSsh::SshRemoteProcessRunner::readyReadStandardOutput,
+ connect(d->installer, &SshRemoteProcessRunner::readyReadStandardOutput,
this, &AbstractRemoteLinuxPackageInstaller::handleInstallerOutput);
- connect(d->installer, &QSsh::SshRemoteProcessRunner::readyReadStandardError,
+ connect(d->installer, &SshRemoteProcessRunner::readyReadStandardError,
this, &AbstractRemoteLinuxPackageInstaller::handleInstallerErrorOutput);
- connect(d->installer, &QSsh::SshRemoteProcessRunner::processClosed,
+ connect(d->installer, &SshRemoteProcessRunner::processClosed,
this, &AbstractRemoteLinuxPackageInstaller::handleInstallationFinished);
QString cmdLine = installCommandLine(packageFilePath);