diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-01 16:00:26 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-01 16:00:26 +0300 |
commit | c635347f18378aea08ba48e991ddb8ff1010c27c (patch) | |
tree | 835b7c57d3891f7944447d9a488ad7d490480e18 /src/configuration.cpp | |
parent | 5a35288a7524c6b5cb9a4e8e3aa93d756b016743 (diff) | |
download | mv-c635347f18378aea08ba48e991ddb8ff1010c27c.tar.gz mv-c635347f18378aea08ba48e991ddb8ff1010c27c.tar.bz2 mv-c635347f18378aea08ba48e991ddb8ff1010c27c.tar.xz mv-c635347f18378aea08ba48e991ddb8ff1010c27c.zip |
Fix code style.
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r-- | src/configuration.cpp | 57 |
1 files changed, 34 insertions, 23 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index fa0d1dc18..34d301446 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -365,21 +365,22 @@ int Configuration::getIntValue(const std::string &key) const if (itdef != mDefaultsData->end() && itdef->second) { - VariableData *const data = itdef->second; + const VariableData *const data = itdef->second; const VariableData::DataType type = static_cast<const VariableData::DataType>(data->getType()); if (type == VariableData::DATA_INT) { - defaultValue = (static_cast<IntData*>(data))->getData(); + defaultValue = (static_cast<const IntData*>( + data))->getData(); } else if (type == VariableData::DATA_STRING) { - defaultValue = atoi((static_cast<StringData*>( + defaultValue = atoi((static_cast<const StringData*>( data))->getData().c_str()); } else if (type == VariableData::DATA_BOOL) { - if ((static_cast<BoolData*>(data))->getData()) + if ((static_cast<const BoolData*>(data))->getData()) defaultValue = 1; else defaultValue = 0; @@ -387,7 +388,7 @@ int Configuration::getIntValue(const std::string &key) const else if (type == VariableData::DATA_FLOAT) { defaultValue = static_cast<int>( - (static_cast<FloatData*>(data))->getData()); + (static_cast<const FloatData*>(data))->getData()); } } else @@ -411,11 +412,12 @@ int Configuration::resetIntValue(const std::string &key) if (mDefaultsData) { const DefaultsData::const_iterator itdef = mDefaultsData->find(key); - VariableData *const data = itdef->second; + const VariableData *const data = itdef->second; if (itdef != mDefaultsData->end() && data && data->getType() == VariableData::DATA_INT) { - defaultValue = (static_cast<IntData*>(data))->getData(); + defaultValue = (static_cast<const IntData*>( + data))->getData(); } else { @@ -441,23 +443,24 @@ std::string Configuration::getStringValue(const std::string &key) const if (itdef != mDefaultsData->end() && itdef->second) { - VariableData *const data = itdef->second; + const VariableData *const data = itdef->second; const VariableData::DataType type = static_cast<const VariableData::DataType>(data->getType()); if (type == VariableData::DATA_STRING) { - defaultValue = (static_cast<StringData*>(data))->getData(); + defaultValue = (static_cast<const StringData*>( + data))->getData(); } else if (type == VariableData::DATA_BOOL) { - if ((static_cast<BoolData*>(data))->getData()) + if ((static_cast<const BoolData*>(data))->getData()) defaultValue = "1"; else defaultValue = "0"; } else if (type == VariableData::DATA_INT) { - defaultValue = toString((static_cast<IntData*>( + defaultValue = toString((static_cast<const IntData*>( data))->getData()); } } @@ -490,29 +493,31 @@ float Configuration::getFloatValue(const std::string &key) const if (itdef != mDefaultsData->end() && itdef->second) { - VariableData *const data = itdef->second; + const VariableData *const data = itdef->second; const VariableData::DataType type = static_cast< VariableData::DataType>(data->getType()); if (type == VariableData::DATA_FLOAT) { defaultValue = static_cast<float>( - (static_cast<FloatData*>(data))->getData()); + (static_cast<const FloatData*>(data))->getData()); } else if (type == VariableData::DATA_STRING) { defaultValue = static_cast<float>(atof(( - static_cast<StringData*>(data))->getData().c_str())); + static_cast<const StringData*>( + data))->getData().c_str())); } else if (type == VariableData::DATA_BOOL) { - if ((static_cast<BoolData*>(data))->getData()) + if ((static_cast<const BoolData*>(data))->getData()) defaultValue = 1; else defaultValue = 0; } else if (type == VariableData::DATA_INT) { - defaultValue = static_cast<float>((static_cast<IntData*>( + defaultValue = static_cast<float>(( + static_cast<const IntData*>( data))->getData()); } } @@ -544,30 +549,36 @@ bool Configuration::getBoolValue(const std::string &key) const if (itdef != mDefaultsData->end() && itdef->second) { - VariableData *const data = itdef->second; + const VariableData *const data = itdef->second; const VariableData::DataType type = static_cast< VariableData::DataType>(data->getType()); if (type == VariableData::DATA_BOOL) { - defaultValue = (static_cast<BoolData*>(data))->getData(); + defaultValue = (static_cast<const BoolData*>( + data))->getData(); } else if (type == VariableData::DATA_INT) { - if ((static_cast<IntData*>(data))->getData() != 0) + if ((static_cast<const IntData*>(data))->getData() != 0) defaultValue = true; else defaultValue = false; } else if (type == VariableData::DATA_STRING) { - if ((static_cast<StringData*>(data))->getData() != "0") + if ((static_cast<const StringData*>( + data))->getData() != "0") + { defaultValue = true; + } else + { defaultValue = false; + } } if (type == VariableData::DATA_FLOAT) { - if (static_cast<int>((static_cast<FloatData*>( + if (static_cast<int>((static_cast<const FloatData*>( data))->getData()) != 0) { defaultValue = true; @@ -600,12 +611,12 @@ bool Configuration::resetBoolValue(const std::string &key) if (mDefaultsData) { const DefaultsData::const_iterator itdef = mDefaultsData->find(key); - VariableData *const data = itdef->second; + const VariableData *const data = itdef->second; if (itdef != mDefaultsData->end() && data && data->getType() == VariableData::DATA_BOOL) { - defaultValue = (static_cast<BoolData*>(data))->getData(); + defaultValue = (static_cast<const BoolData*>(data))->getData(); } else { |