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
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue