mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-12 16:23:07 -07:00
Implement Preferences::changed() signal.
This commit is contained in:
parent
458b216b74
commit
8e1698d563
2 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue