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:
Dirk Hohndel 2021-01-05 12:08:09 -08:00
parent d63910caa3
commit 76136010bf
4 changed files with 8 additions and 50 deletions

View file

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