summaryrefslogtreecommitdiffstats
path: root/src/dom/svg/svgparser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dom/svg/svgparser.cpp')
-rw-r--r--src/dom/svg/svgparser.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dom/svg/svgparser.cpp b/src/dom/svg/svgparser.cpp
index e263f1481..e78a8e508 100644
--- a/src/dom/svg/svgparser.cpp
+++ b/src/dom/svg/svgparser.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
@@ -150,7 +150,7 @@ int SvgParser::skipwhite(int p)
return -1;
}
}
- else if (!isWhitespace(get(p)))
+ else if (!uni_is_space(get(p)))
break;
else
p++;
@@ -165,7 +165,7 @@ int SvgParser::skipwhite(int p)
int SvgParser::getWord(int p, DOMString &result)
{
XMLCh ch = get(p);
- if (!isLetter(ch))
+ if (!uni_is_letter(ch))
return p;
DOMString str;
str.push_back(ch);
@@ -174,7 +174,7 @@ int SvgParser::getWord(int p, DOMString &result)
while (p < parselen)
{
ch = get(p);
- if (isLetterOrDigit(ch) || ch=='-' || ch=='_')
+ if (uni_is_letter_or_digit(ch) || ch=='-' || ch=='_')
{
str.push_back(ch);
p++;