1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 04:54:18 +00:00

Another compilation fix for Windows

This commit is contained in:
Christophe Dumez 2010-11-22 21:09:30 +00:00
parent b169083fe2
commit 71c4f6e7e3

View File

@ -58,21 +58,9 @@ public:
}
#ifdef Q_WS_WIN
QVariant value(const QString & key, const QVariant &defaultValue = QVariant()) {
QVariant value(const QString & key, const QVariant &defaultValue = QVariant()) const {
QString key_tmp(key);
QVariant ret = QSettings::value(key_tmp);
if(ret.isNull()) {
if(format() != QSettings::NativeFormat) {
// Keep compatibility with qBittorrent < 2.3.0
// Import the setting from the registry
QSettings old_settings(organizationName(), applicationName());
ret = old_settings.value(key_tmp);
if(!ret.isNull()) {
setValue(key_tmp, ret);
old_settings.remove(key_tmp);
}
}
}
if(ret.isNull())
return defaultValue;
return ret;