1
0

Ignore trailing and leading spaces in INI values# Please enter the commit message for your changes. Lines starting

This commit is contained in:
LogicParrot
2016-02-05 19:55:16 +02:00
parent cb28aaface
commit e51a139035
2 changed files with 21 additions and 21 deletions

View File

@@ -146,7 +146,7 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect)
case '=':
{
valuename = line.substr(0, pLeft);
value = line.substr(pLeft + 1);
value = TrimString(line.substr(pLeft + 1));
AddValue(keyname, valuename, value);
break;
}
@@ -213,13 +213,13 @@ bool cIniFile::WriteFile(const AString & a_FileName) const
for (size_t keyID = 0; keyID < keys.size(); ++keyID)
{
f << '[' << names[keyID] << ']' << iniEOL;
// Comments.
for (size_t commentID = 0; commentID < keys[keyID].comments.size(); ++commentID)
{
f << ';' << keys[keyID].comments[commentID] << iniEOL;
}
// Values.
for (size_t valueID = 0; valueID < keys[keyID].names.size(); ++valueID)
{
@@ -662,7 +662,7 @@ bool cIniFile::HasValue(const AString & a_KeyName, const AString & a_ValueName)
{
return false;
}
// Find the value:
int valueID = FindValue(keyID, a_ValueName);
return (valueID != noID);