summaryrefslogtreecommitdiff
path: root/src/html/html_basefont_element.c
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-17 03:06:50 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:08 +0530
commit5a31bfe0233d501ca162848631a1e6ff5c87a275 (patch)
tree000c9d36de33940ad2b5e962068736e36a85eb83 /src/html/html_basefont_element.c
parent559ca5e250bc1b902bd2764e05dd8767d1d7ffe6 (diff)
downloadlibdom-5a31bfe0233d501ca162848631a1e6ff5c87a275.tar.gz
libdom-5a31bfe0233d501ca162848631a1e6ff5c87a275.tar.bz2
Param Element
Diffstat (limited to 'src/html/html_basefont_element.c')
-rw-r--r--src/html/html_basefont_element.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/html/html_basefont_element.c b/src/html/html_basefont_element.c
index e524ed3..7aa20a0 100644
--- a/src/html/html_basefont_element.c
+++ b/src/html/html_basefont_element.c
@@ -32,7 +32,7 @@ static struct dom_element_protected_vtable _protect_vtable = {
* \return DOM_NO_ERR on success, appropriate dom_exception on failure.
*/
dom_exception _dom_html_base_font_element_create(struct dom_html_document *doc,
- dom_string *namespace, dom_string *base_fontfix,
+ dom_string *namespace, dom_string *prefix,
struct dom_html_base_font_element **ele)
{
struct dom_node_internal *node;
@@ -46,7 +46,7 @@ dom_exception _dom_html_base_font_element_create(struct dom_html_document *doc,
node->base.vtable = &_dom_html_element_vtable;
node->vtable = &_protect_vtable;
- return _dom_html_base_font_element_initialise(doc, namespace, base_fontfix, *ele);
+ return _dom_html_base_font_element_initialise(doc, namespace, prefix, *ele);
}
/**
@@ -57,12 +57,12 @@ dom_exception _dom_html_base_font_element_create(struct dom_html_document *doc,
* \return DOM_NO_ERR on success, appropriate dom_exception on failure.
*/
dom_exception _dom_html_base_font_element_initialise(struct dom_html_document *doc,
- dom_string *namespace, dom_string *base_fontfix,
+ dom_string *namespace, dom_string *prefix,
struct dom_html_base_font_element *ele)
{
return _dom_html_element_initialise(doc, &ele->base,
doc->memoised[hds_BASEFONT],
- namespace, base_fontfix);
+ namespace, prefix);
}
/**