aboutsummaryrefslogtreecommitdiffstats
path: root/src/propertySet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/propertySet.cpp')
-rw-r--r--src/propertySet.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/propertySet.cpp b/src/propertySet.cpp
index 839e5600..fa4b7a27 100644
--- a/src/propertySet.cpp
+++ b/src/propertySet.cpp
@@ -93,7 +93,7 @@ void propertySet::parse(const string& props)
for ( ; pos != end ; )
{
// Skip white-spaces
- for ( ; pos != end && parserHelpers::isspace(*pos) ; ++pos);
+ for ( ; pos != end && parserHelpers::isSpace(*pos) ; ++pos);
if (pos != end)
{
@@ -110,7 +110,7 @@ void propertySet::parse(const string& props)
string::const_iterator optEnd = pos;
- for ( ; optEnd != optStart && parserHelpers::isspace(*(optEnd - 1)) ; --optEnd);
+ for ( ; optEnd != optStart && parserHelpers::isSpace(*(optEnd - 1)) ; --optEnd);
const string option(optStart, optEnd);
string value = "1";
@@ -120,7 +120,7 @@ void propertySet::parse(const string& props)
++pos; // skip '='
// Extract the value
- for ( ; pos != end && parserHelpers::isspace(*pos) ; ++pos);
+ for ( ; pos != end && parserHelpers::isSpace(*pos) ; ++pos);
if (pos != end)
{
@@ -159,7 +159,7 @@ void propertySet::parse(const string& props)
{
const string::const_iterator valStart = pos;
- for ( ; pos != end && !parserHelpers::isspace(*pos) ; ++pos);
+ for ( ; pos != end && !parserHelpers::isSpace(*pos) ; ++pos);
value = string(valStart, pos);
}