diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-02-28 20:28:32 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-02-28 20:28:32 +0000 |
| commit | b0bc934618bd8b324ea40b513a5b72191370db60 (patch) | |
| tree | d948742029487298b52f14d68e94fced8c14758f /src/dom/xmlreader.cpp | |
| parent | Fixed bug with color drag-n-drop (diff) | |
| download | inkscape-b0bc934618bd8b324ea40b513a5b72191370db60.tar.gz inkscape-b0bc934618bd8b324ea40b513a5b72191370db60.zip | |
Replace isspace() with isWhitespace(). Use pure unicode character classes.
(bzr r190)
Diffstat (limited to 'src/dom/xmlreader.cpp')
| -rwxr-xr-x | src/dom/xmlreader.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/dom/xmlreader.cpp b/src/dom/xmlreader.cpp index d475afdea..dd88c2bb8 100755 --- a/src/dom/xmlreader.cpp +++ b/src/dom/xmlreader.cpp @@ -30,13 +30,17 @@ #include "xmlreader.h" +#include "charclass.h" #include "svgimpl.h" #include <stdarg.h> -namespace org { -namespace w3c { -namespace dom { +namespace org +{ +namespace w3c +{ +namespace dom +{ //######################################################################### @@ -188,7 +192,7 @@ int XmlReader::skipwhite(int p) while (p < len) { int b = get(p); - if (!isspace(b)) + if (!isWhitespace(b)) break; p++; } |
