PluginInstallWizard: Remove unneeded code

Remove an unneeded `if` and actually no need to override a method that
just calls the parent implementation.

Change-Id: I9f17ed1587227ce8f0ba14cdeb72dd32b73513ba
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Eike Ziller
2024-12-11 14:52:27 +01:00
parent 5f4f49364f
commit c2bc0dd937

View File

@@ -112,13 +112,6 @@ public:
return bool(sourceAndCommand);
}
int nextId() const final
{
if (hasLibSuffix(m_data->sourcePath))
return WizardPage::nextId();
return WizardPage::nextId();
}
InfoLabel *m_info = nullptr;
Data *m_data = nullptr;
};