summaryrefslogtreecommitdiff
path: root/src/configuration.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-11-26 00:51:57 +0300
committerAndrei Karas <akaras@inbox.ru>2018-11-27 20:33:15 +0300
commit0c20db8d108c4123fcc3ecb343759e68567a4d4e (patch)
treef577edeae7b4866d68c084a1eaa229e98c80ea8f /src/configuration.cpp
parent2be4fc5b4eee97938657c9c8be73c4b91c8b9826 (diff)
downloadplus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.gz
plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.bz2
plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.xz
plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.zip
Remove extra ; from different code.
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r--src/configuration.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 85c69e28b..79bb5041e 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -443,7 +443,7 @@ int Configuration::getIntValue(const std::string &key) const
reportAlways(
"%s: No integer value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
}
else
@@ -462,7 +462,7 @@ int Configuration::resetIntValue(const std::string &key)
{
reportAlways("%s: No integer value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
else
{
@@ -477,7 +477,7 @@ int Configuration::resetIntValue(const std::string &key)
{
reportAlways("%s: No integer value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
}
setValue(key, defaultValue);
@@ -527,7 +527,7 @@ std::string Configuration::getStringValue(const std::string &key) const
{
reportAlways("%s: No string value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
}
else
@@ -583,7 +583,7 @@ float Configuration::getFloatValue(const std::string &key) const
{
reportAlways("%s: No float value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
}
else
@@ -651,7 +651,7 @@ bool Configuration::getBoolValue(const std::string &key) const
reportAlways(
"%s: No boolean value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
}
else
@@ -672,7 +672,7 @@ bool Configuration::resetBoolValue(const std::string &key)
{
reportAlways("%s: No boolean value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
else
{
@@ -686,7 +686,7 @@ bool Configuration::resetBoolValue(const std::string &key)
{
reportAlways("%s: No boolean value in registry for key %s",
mConfigPath.c_str(),
- key.c_str());
+ key.c_str())
}
}
@@ -870,7 +870,7 @@ void Configuration::write()
if (testFile == nullptr)
{
reportAlways("Configuration::write() couldn't open %s for writing",
- mConfigPath.c_str());
+ mConfigPath.c_str())
BLOCK_END("Configuration::write")
return;
}