mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-09 06:17:58 +00:00
Another Windows compilation fix
This commit is contained in:
parent
c8b8518608
commit
aad42d4a57
@ -34,6 +34,8 @@
|
||||
#include <QSettings>
|
||||
|
||||
class QIniSettings : public QSettings {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
QIniSettings(const QString &organization, const QString &application = QString(), QObject *parent = 0 ):
|
||||
#ifdef Q_WS_WIN
|
||||
@ -49,6 +51,12 @@ public:
|
||||
|
||||
}
|
||||
|
||||
QIniSettings& operator =(const QIniSettings &other) {
|
||||
Q_UNUSED(other);
|
||||
Q_ASSERT(0);
|
||||
return *this;
|
||||
}
|
||||
|
||||
#ifdef Q_WS_WIN
|
||||
QVariant value(const QString & key, const QVariant &defaultValue = QVariant()) {
|
||||
QString key_tmp(key);
|
||||
|
Loading…
Reference in New Issue
Block a user