1
0
Fork 0

Fixed Tab spacing of cases.

This commit is contained in:
narroo 2014-02-17 08:45:31 -05:00
parent 6eefd54d45
commit 3ce8bf9712
1 changed files with 10 additions and 10 deletions

View File

@ -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))