mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-03 07:29:59 +08:00
Have Preferences subclass QIniSettings privately to discourage bad usage.
This commit is contained in:
parent
1f25e6d0fe
commit
1549a443c5
@ -62,15 +62,21 @@ namespace DNS {
|
|||||||
enum Service { DYNDNS, NOIP, NONE = -1 };
|
enum Service { DYNDNS, NOIP, NONE = -1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
class Preferences : public QIniSettings {
|
class Preferences : private QIniSettings {
|
||||||
Q_DISABLE_COPY(Preferences)
|
Q_DISABLE_COPY(Preferences)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Preferences() : QIniSettings("qBittorrent", "qBittorrent") {
|
Preferences()
|
||||||
|
: QIniSettings("qBittorrent", "qBittorrent")
|
||||||
|
{
|
||||||
qDebug() << "Preferences constructor";
|
qDebug() << "Preferences constructor";
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
void sync()
|
||||||
|
{
|
||||||
|
QIniSettings::sync();
|
||||||
|
}
|
||||||
|
|
||||||
// General options
|
// General options
|
||||||
QString getLocale() const {
|
QString getLocale() const {
|
||||||
return value(QString::fromUtf8("Preferences/General/Locale"), "en_GB").toString();
|
return value(QString::fromUtf8("Preferences/General/Locale"), "en_GB").toString();
|
||||||
|
Loading…
Reference in New Issue
Block a user