mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-21 08:09:35 +08:00
Implement Preferences::changed() signal.
This commit is contained in:
parent
458b216b74
commit
8e1698d563
@ -165,6 +165,8 @@ void Preferences::save() {
|
||||
#else
|
||||
delete settings;
|
||||
#endif
|
||||
|
||||
emit changed();
|
||||
}
|
||||
|
||||
const QVariant Preferences::value(const QString &key, const QVariant &defaultValue) const {
|
||||
|
@ -33,7 +33,6 @@
|
||||
#ifndef PREFERENCES_H
|
||||
#define PREFERENCES_H
|
||||
|
||||
|
||||
#include <QTime>
|
||||
#include <QDateTime>
|
||||
#include <QList>
|
||||
@ -70,6 +69,9 @@ private:
|
||||
const QVariant value(const QString &key, const QVariant &defaultValue = QVariant()) const;
|
||||
void setValue(const QString &key, const QVariant &value);
|
||||
|
||||
signals:
|
||||
void changed();
|
||||
|
||||
public slots:
|
||||
void save();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user