summaryrefslogtreecommitdiff
path: root/src/cxml.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cxml.cc')
-rw-r--r--src/cxml.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cxml.cc b/src/cxml.cc
index 814a558..75da11f 100644
--- a/src/cxml.cc
+++ b/src/cxml.cc
@@ -473,9 +473,9 @@ cxml::raw_convert (string v)
xmlpp::Element*
-cxml::add_child(xmlpp::Element* parent, string const& name)
+cxml::add_child(xmlpp::Element* parent, string const& name, string const& ns_prefix)
{
- return parent->add_child(name);
+ return parent->add_child(name, ns_prefix);
}