summaryrefslogtreecommitdiff
path: root/src/html/html_quote_element.h
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2016-02-05 20:31:46 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2016-02-05 20:31:46 +0000
commit68c446328f2d874384b2d7ca6afb42b9d7fe4a17 (patch)
treefe7e75b5deb3fcf3d1b2864f962ffa2117480eef /src/html/html_quote_element.h
parente9257f8c49dacf49feebad32780ffb7e6a7f013c (diff)
parentd19eda00d250fae4b18ce41c941e709d7d384ff5 (diff)
downloadlibdom-68c446328f2d874384b2d7ca6afb42b9d7fe4a17.tar.gz
libdom-68c446328f2d874384b2d7ca6afb42b9d7fe4a17.tar.bz2
Merge branch 'tlsa/fix-html-element-copy-constructors'
Diffstat (limited to 'src/html/html_quote_element.h')
-rw-r--r--src/html/html_quote_element.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/html/html_quote_element.h b/src/html/html_quote_element.h
index f62f2ec..baecef3 100644
--- a/src/html/html_quote_element.h
+++ b/src/html/html_quote_element.h
@@ -49,4 +49,13 @@ dom_exception _dom_html_quote_element_copy(dom_node_internal *old,
_dom_virtual_html_quote_element_destroy, \
_dom_html_quote_element_copy
+/* Helper functions*/
+dom_exception _dom_html_quote_element_copy_internal(
+ dom_html_quote_element *old,
+ dom_html_quote_element *new);
+#define dom_html_quote_element_copy_internal(o, n) \
+ _dom_html_quote_element_copy_internal( \
+ (dom_html_quote_element *) (o), \
+ (dom_html_quote_element *) (n))
+
#endif