aboutsummaryrefslogtreecommitdiffstats
path: root/src/inifile.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-19 09:20:23 +0000
committerlloyd <[email protected]>2006-06-19 09:20:23 +0000
commit69ca3d65b82ab041e8df85ca3f4e63e669557607 (patch)
tree23005899d23998ada689d4babd2bfccb4d520dbe /src/inifile.cpp
parent6413b5d29a781a231d2f331e4191b68fb88a27d9 (diff)
Remove the to_lower function; turns out that both uses of it
within the library were to perform case-insensitive matching, so simply implement that instead. Place all of the character set handling functions into a Charset namespace (and update all callers). Remove the iso2local/local2iso/iso2utf/utf2iso functions, replaced by the new charset transcoder stuff. Initialize the transcoder stored in the global library state upon initialization.
Diffstat (limited to 'src/inifile.cpp')
-rw-r--r--src/inifile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inifile.cpp b/src/inifile.cpp
index 44830ef22..22b8aa1a3 100644
--- a/src/inifile.cpp
+++ b/src/inifile.cpp
@@ -34,7 +34,7 @@ std::string strip_whitespace(const std::string& line)
return new_line;
if(c == '\\' && !is_escaped) { is_escaped = true; continue; }
- if(is_space(c) && !in_quote && !in_string && !is_escaped)
+ if(Charset::is_space(c) && !in_quote && !in_string && !is_escaped)
continue;
new_line += c;