Scope this fix to Windows.

Took 4 minutes
This commit is contained in:
Lukas Brübach 2026-04-07 15:49:28 +02:00
parent dc5eb208c1
commit 1a8785c565

View file

@ -21,7 +21,9 @@ OracleWizard::OracleWizard(QWidget *parent) : QWizard(parent)
// define a dummy context that will be used where needed // define a dummy context that will be used where needed
QString dummy = QT_TRANSLATE_NOOP("i18n", "English"); QString dummy = QT_TRANSLATE_NOOP("i18n", "English");
#ifdef Q_OS_WIN
setWizardStyle(QWizard::ModernStyle); setWizardStyle(QWizard::ModernStyle);
#endif
QString oracleSettingsFile = SettingsCache::instance().getSettingsPath() + "oracle.ini"; QString oracleSettingsFile = SettingsCache::instance().getSettingsPath() + "oracle.ini";
settings = new QSettings(oracleSettingsFile, QSettings::IniFormat, this); settings = new QSettings(oracleSettingsFile, QSettings::IniFormat, this);