Code

Update charclass.h/cpp to use complete Unicode character database
[inkscape.git] / src / dom / xmlreader.cpp
index 6e6db723dbe22a39b63369a49f78bc0996f357e3..32a97e0c000d54f10c197f3b2b7d478a0a931f06 100644 (file)
@@ -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++;
     }