forked from qt-creator/qt-creator
ProjectExplorer: Rename DeviceProcess::error to errorOccured
That's what QProcess favors nowadays and QtcProcess uses. Change-Id: Ie9492ae62f23e35a8a70f72196c3d1b6bc50cbdc Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -104,7 +104,7 @@ void QnxDevice::updateVersionNumber() const
|
||||
QEventLoop eventLoop;
|
||||
SshDeviceProcess versionNumberProcess(sharedFromThis());
|
||||
QObject::connect(&versionNumberProcess, &SshDeviceProcess::finished, &eventLoop, &QEventLoop::quit);
|
||||
QObject::connect(&versionNumberProcess, &DeviceProcess::error, &eventLoop, &QEventLoop::quit);
|
||||
QObject::connect(&versionNumberProcess, &DeviceProcess::errorOccurred, &eventLoop, &QEventLoop::quit);
|
||||
|
||||
Runnable r;
|
||||
r.command = {"uname", {"-r"}};
|
||||
|
||||
Reference in New Issue
Block a user