summaryrefslogtreecommitdiffstats
path: root/src/dom/uri.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/uri.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/uri.cpp')
-rw-r--r--src/dom/uri.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dom/uri.cpp b/src/dom/uri.cpp
index 13b76c413..8b810e611 100644
--- a/src/dom/uri.cpp
+++ b/src/dom/uri.cpp
@@ -270,7 +270,7 @@ DOMString URI::getNativePath() const
if (pathStr.size() >= 3)
{
if (pathStr[0] == '/' &&
- isLetter(pathStr[1]) &&
+ uni_is_letter(pathStr[1]) &&
pathStr[2] == ':')
firstChar++;
}
@@ -766,7 +766,7 @@ int URI::parseHierarchicalPart(int p0)
//# Are we absolute?
ch = peek(p);
- if (isLetter(ch) && peek(p+1)==':')
+ if (uni_is_letter(ch) && peek(p+1)==':')
{
absolute = true;
path.push_back((XMLCh)'/');