mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
preferences: remove pointless member
This could never have worked the way it was used. Some whitespace fixes snuck into this commit. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d63910caa3
commit
76136010bf
4 changed files with 8 additions and 50 deletions
|
|
@ -47,7 +47,6 @@ enum def_file_behavior {
|
|||
|
||||
typedef struct {
|
||||
bool dont_check_for_updates;
|
||||
bool dont_check_exists;
|
||||
const char *last_version_used;
|
||||
int next_check;
|
||||
} update_manager_prefs_t;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ qPrefUpdateManager *qPrefUpdateManager::instance()
|
|||
return self;
|
||||
}
|
||||
|
||||
|
||||
void qPrefUpdateManager::loadSync(bool doSync)
|
||||
{
|
||||
disk_dont_check_for_updates(doSync);
|
||||
|
|
@ -25,22 +24,9 @@ void qPrefUpdateManager::loadSync(bool doSync)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
HANDLE_PREFERENCE_BOOL_EXT(UpdateManager, "DontCheckForUpdates", dont_check_for_updates, update_manager.);
|
||||
|
||||
void qPrefUpdateManager::set_dont_check_exists(bool value)
|
||||
{
|
||||
if (value != prefs.update_manager.dont_check_exists) {
|
||||
prefs.update_manager.dont_check_exists = value;
|
||||
emit instance()->dont_check_existsChanged(value);
|
||||
}
|
||||
// DO NOT STORE ON DISK
|
||||
}
|
||||
|
||||
|
||||
HANDLE_PREFERENCE_TXT_EXT(UpdateManager, "LastVersionUsed", last_version_used, update_manager.);
|
||||
|
||||
|
||||
void qPrefUpdateManager::set_next_check(const QDate& value)
|
||||
{
|
||||
long time_value = value.toJulianDay();
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
class qPrefUpdateManager : public QObject {
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(bool dont_check_for_updates READ dont_check_for_updates WRITE set_dont_check_for_updates NOTIFY dont_check_for_updatesChanged)
|
||||
Q_PROPERTY(bool dont_check_exists READ dont_check_exists WRITE set_dont_check_exists NOTIFY dont_check_existsChanged)
|
||||
Q_PROPERTY(const QString last_version_used READ last_version_used WRITE set_last_version_used NOTIFY last_version_usedChanged)
|
||||
Q_PROPERTY(const QDate next_check READ next_check WRITE set_next_check NOTIFY next_checkChanged)
|
||||
Q_PROPERTY(const QString uuidString READ uuidString WRITE set_uuidString NOTIFY uuidStringChanged)
|
||||
|
|
@ -24,21 +23,18 @@ public:
|
|||
|
||||
public:
|
||||
static bool dont_check_for_updates() { return prefs.update_manager.dont_check_for_updates; }
|
||||
static bool dont_check_exists() { return prefs.update_manager.dont_check_exists; }
|
||||
static const QString last_version_used() { return prefs.update_manager.last_version_used; }
|
||||
static const QDate next_check() { return QDate::fromJulianDay(prefs.update_manager.next_check); }
|
||||
static const QString uuidString() { return st_uuidString; }
|
||||
|
||||
public slots:
|
||||
static void set_dont_check_for_updates(bool value);
|
||||
static void set_dont_check_exists(bool value);
|
||||
static void set_last_version_used(const QString& value);
|
||||
static void set_next_check(const QDate& value);
|
||||
static void set_uuidString(const QString& value);
|
||||
|
||||
signals:
|
||||
void dont_check_for_updatesChanged(bool value);
|
||||
void dont_check_existsChanged(bool value);
|
||||
void last_version_usedChanged(const QString& value);
|
||||
void next_checkChanged(const QDate& value);
|
||||
void uuidStringChanged(const QString& value);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue