GenericLinuxDeviceConfigurationWizard: Rename into SshDeviceWizard

Change-Id: I67baad931c524376de6ae67a361db6866a910317
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-07-21 01:22:39 +02:00
parent 82f39892f9
commit d8deb81e3f
4 changed files with 5 additions and 11 deletions

View File

@@ -95,8 +95,7 @@ QnxDeviceFactory::QnxDeviceFactory() : IDeviceFactory(Constants::QNX_QNX_OS_TYPE
setConstructionFunction([] { return IDevice::Ptr(new QnxDevice); });
setCreator([]() -> IDevice::Ptr {
const IDevice::Ptr device = IDevice::Ptr(new QnxDevice);
GenericLinuxDeviceConfigurationWizard wizard(
Tr::tr("New QNX Device Configuration Setup"), device);
SshDeviceWizard wizard(Tr::tr("New QNX Device Configuration Setup"), device);
if (wizard.exec() != QDialog::Accepted)
return {};
return device;