gui/scan_setup.cpp: add explicit option to enable/disable fast-scan update

Origin commit data
------------------
Branch: ni/coolstream
Commit: b925988afe
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2014-04-07 (Mon, 07 Apr 2014)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2014-04-07 15:20:47 +04:00
parent 69934cc8db
commit 431d402526
4 changed files with 20 additions and 9 deletions

View File

@@ -154,6 +154,7 @@ bool CScanSettings::loadSettings(const char * const fileName)
fast_type = configfile.getInt32("fast_type", 2);
fast_op = configfile.getInt32("fast_op", 0);
fst_version = configfile.getInt32("fst_version", 0);
fst_update = configfile.getInt32("fst_update", 0);
cable_nid = configfile.getInt32("cable_nid", 0);
return ret;
@@ -174,6 +175,7 @@ bool CScanSettings::saveSettings(const char * const fileName)
configfile.setInt32("fast_type", fast_type);
configfile.setInt32("fast_op", fast_op);
configfile.setInt32("fst_version", fst_version);
configfile.setInt32("fst_update", fst_update);
configfile.setInt32("cable_nid", cable_nid);
configfile.setString("satName", satName);