summaryrefslogtreecommitdiff
path: root/src/utils/namespace.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-10-03 23:44:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-10-03 23:44:32 +0000
commitf3c02943d778e9b00064bf0e103aaecb06ab5e01 (patch)
tree96549872654851bdb23feafbae373060a81b10b5 /src/utils/namespace.h
parentf8897a9655ac97471d34f7a4071a721e2ee46560 (diff)
downloadlibdom-f3c02943d778e9b00064bf0e103aaecb06ab5e01.tar.gz
libdom-f3c02943d778e9b00064bf0e103aaecb06ab5e01.tar.bz2
Make the dom string class more useful.
Purge all trace of dom_string_get_data() from outside the dom string implementation. Port affected code to new, more useful, APIs. This also fixes the interned node name strings mentioned in the previous commit. svn path=/trunk/dom/; revision=3621
Diffstat (limited to 'src/utils/namespace.h')
-rw-r--r--src/utils/namespace.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/utils/namespace.h b/src/utils/namespace.h
index 0bc5093..ec69035 100644
--- a/src/utils/namespace.h
+++ b/src/utils/namespace.h
@@ -26,8 +26,7 @@ dom_exception _dom_namespace_validate_qname(struct dom_string *qname,
/* Split a QName into a namespace prefix and localname string */
dom_exception _dom_namespace_split_qname(struct dom_string *qname,
- struct dom_document *doc, struct dom_string **prefix,
- struct dom_string **localname);
+ struct dom_string **prefix, struct dom_string **localname);
#endif