summaryrefslogtreecommitdiff
path: root/src/html/html_tablesection_element.h
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2016-02-05 18:07:20 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2016-02-05 18:07:20 +0000
commitafec57651ec64142437c9c3d2b72f46d75db6728 (patch)
treea66d42608d9acb665c001bb8c5611351a53863f4 /src/html/html_tablesection_element.h
parentf566b7cab8ffc9f4e959154a57bef91521f20d8a (diff)
downloadlibdom-afec57651ec64142437c9c3d2b72f46d75db6728.tar.gz
libdom-afec57651ec64142437c9c3d2b72f46d75db6728.tar.bz2
Fix: Proper copy constructor for HTMLTableSectionElement.
Diffstat (limited to 'src/html/html_tablesection_element.h')
-rw-r--r--src/html/html_tablesection_element.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/html/html_tablesection_element.h b/src/html/html_tablesection_element.h
index 6985abd..9caf65e 100644
--- a/src/html/html_tablesection_element.h
+++ b/src/html/html_tablesection_element.h
@@ -49,6 +49,15 @@ dom_exception _dom_html_table_section_element_copy(dom_node_internal *old,
_dom_virtual_html_table_section_element_destroy, \
_dom_html_table_section_element_copy
+/* Helper functions*/
+dom_exception _dom_html_table_section_element_copy_internal(
+ dom_html_table_section_element *old,
+ dom_html_table_section_element *new);
+#define dom_html_table_section_element_copy_internal(o, n) \
+ _dom_html_table_section_element_copy_internal( \
+ (dom_html_table_section_element *) (o), \
+ (dom_html_table_section_element *) (n))
+
#endif
bool table_section_callback(struct dom_node_internal *node, void *ctx);