1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-09 22:37:59 +00:00

Another Windows compilation fix

This commit is contained in:
Christophe Dumez 2010-07-16 16:02:58 +00:00
parent c8b8518608
commit aad42d4a57

View File

@ -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);