Browse Source

Fix to last commit

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
d354d7133e
  1. 3
      src/qinisettings.h

3
src/qinisettings.h

@ -64,7 +64,8 @@ public:
} }
void setValue(const QString &key, const QVariant &val) { void setValue(const QString &key, const QVariant &val) {
key = key.replace("/", "\\"); if(format() == QSettings::NativeFormat)
key = key.replace("/", "\\");
QSettings::setValue(key, val); QSettings::setValue(key, val);
} }
#endif #endif

Loading…
Cancel
Save