Fix various warnings

Change-Id: Iea85f4b890ce7700e8b3632de4656cf848729a36
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
Christian Kandeler
2022-01-26 17:01:22 +01:00
parent 859fa57648
commit 6993bc7382
8 changed files with 87 additions and 93 deletions

View File

@@ -201,7 +201,7 @@ public:
{
delete m_shell;
m_shell = nullptr;
DEBUG("Failed to connect to " << parameters.host());
qCDebug(linuxDeviceLog) << "Failed to connect to" << parameters.host();
return false;
}
@@ -440,7 +440,7 @@ bool LinuxDevice::handlesFile(const FilePath &filePath) const
return filePath.scheme() == "ssh" && filePath.host() == userAtHost();
}
void LinuxDevice::runProcess(QtcProcess &process) const
void LinuxDevice::runProcess(QtcProcess &) const
{
QTC_CHECK(false); // FIXME: Implement
}