summaryrefslogtreecommitdiffstats
path: root/src/dom/xmlreader.cpp
diff options
context:
space:
mode:
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++;
}