From a9930d35b1744838307ad0cfd6782c0c7b0772ff Mon Sep 17 00:00:00 2001 From: striper Date: Sun, 18 Sep 2011 15:10:51 +0000 Subject: [PATCH] - CZapit::LoadSettings(): add missing config parameter makeRemainingChannelsBouquet git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@1699 e54a6e83-5905-42d5-8d5c-058d10e6a962 --- src/zapit/src/zapit.cpp | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/zapit/src/zapit.cpp b/src/zapit/src/zapit.cpp index eaada818d..9f3bc014a 100644 --- a/src/zapit/src/zapit.cpp +++ b/src/zapit/src/zapit.cpp @@ -243,24 +243,25 @@ void CZapit::LoadSettings() live_channel_id = configfile.getInt64("lastChannel", 0); lastChannelRadio = configfile.getInt32("lastChannelRadio", 0); - lastChannelTV = configfile.getInt32("lastChannelTV", 0); + lastChannelTV = configfile.getInt32("lastChannelTV", 0); #if 0 //unused config.fastZap = configfile.getBool("fastZap", 1); config.sortNames = configfile.getBool("sortNames", 0); voltageOff = configfile.getBool("voltageOff", 0); #endif - config.saveLastChannel = configfile.getBool("saveLastChannel", true); - config.rezapTimeout = configfile.getInt32("rezapTimeout", 1); - config.feTimeout = configfile.getInt32("feTimeout", 40); - config.scanPids = configfile.getBool("scanPids", 0); - config.highVoltage = configfile.getBool("highVoltage", 0); + config.saveLastChannel = configfile.getBool("saveLastChannel", true); + config.rezapTimeout = configfile.getInt32("rezapTimeout", 1); + config.feTimeout = configfile.getInt32("feTimeout", 40); + config.scanPids = configfile.getBool("scanPids", 0); + config.highVoltage = configfile.getBool("highVoltage", 0); + config.makeRemainingChannelsBouquet = configfile.getBool("makeRemainingChannelsBouquet", 1); - config.gotoXXLatitude = strtod(configfile.getString("gotoXXLatitude", "0.0").c_str(), NULL); - config.gotoXXLongitude = strtod(configfile.getString("gotoXXLongitude", "0.0").c_str(), NULL); + config.gotoXXLatitude = strtod(configfile.getString("gotoXXLatitude", "0.0").c_str(), NULL); + config.gotoXXLongitude = strtod(configfile.getString("gotoXXLongitude", "0.0").c_str(), NULL); config.gotoXXLaDirection = configfile.getInt32("gotoXXLaDirection", 1); config.gotoXXLoDirection = configfile.getInt32("gotoXXLoDirection", 0); - config.repeatUsals = configfile.getInt32("repeatUsals", 0); + config.repeatUsals = configfile.getInt32("repeatUsals", 0); config.scanSDT = configfile.getInt32("scanSDT", 0);