summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/inifile/iniFile.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/inifile/iniFile.cpp b/lib/inifile/iniFile.cpp
index fbbf5c197..212c1d14d 100644
--- a/lib/inifile/iniFile.cpp
+++ b/lib/inifile/iniFile.cpp
@@ -130,8 +130,8 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect)
switch (line[pLeft])
{
- case '[':
- {
+ case '[':
+ {
if (
((pRight = line.find_last_of("]")) != AString::npos) &&
(pRight > pLeft)
@@ -141,19 +141,19 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect)
AddKeyName(keyname);
}
break;
- }
+ }
- case '=':
- {
+ case '=':
+ {
valuename = line.substr(0, pLeft);
value = line.substr(pLeft + 1);
AddValue(keyname, valuename, value);
break;
- }
+ }
- case ';':
- case '#':
- {
+ case ';':
+ case '#':
+ {
if (names.size() == 0)
{
AddHeaderComment(line.substr(pLeft + 1));
@@ -163,7 +163,7 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect)
AddKeyComment(keyname, line.substr(pLeft + 1));
}
break;
- }
+ }
} // switch (line[pLeft])
} // while(getline(f, line))