summaryrefslogtreecommitdiffstats
path: root/src/dom/xmlreader.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2008-03-07 20:44:54 +0000
committerishmal <ishmal@users.sourceforge.net>2008-03-07 20:44:54 +0000
commitfd7b2b9b33826fa41ca8359188f8bad0f258435d (patch)
tree6a87305794173e99cb0cdc902ce748916f13ae1c /src/dom/xmlreader.cpp
parentFix for bug 199387 (p3, p6 modes of Clone Tiler broken) (diff)
downloadinkscape-fd7b2b9b33826fa41ca8359188f8bad0f258435d.tar.gz
inkscape-fd7b2b9b33826fa41ca8359188f8bad0f258435d.zip
Update charclass.h/cpp to use complete Unicode character database
(bzr r4984)
Diffstat (limited to 'src/dom/xmlreader.cpp')
-rw-r--r--src/dom/xmlreader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dom/xmlreader.cpp b/src/dom/xmlreader.cpp
index 6e6db723d..32a97e0c0 100644
--- a/src/dom/xmlreader.cpp
+++ b/src/dom/xmlreader.cpp
@@ -10,7 +10,7 @@
* Authors:
* Bob Jamison
*
- * Copyright (C) 2005 Bob Jamison
+ * Copyright (C) 2005-2008 Bob Jamison
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -193,7 +193,7 @@ int XmlReader::skipwhite(int p)
while (p < len)
{
int b = get(p);
- if (!isWhitespace(b))
+ if (!uni_is_space(b))
break;
p++;
}