summaryrefslogtreecommitdiff
path: root/include/dom
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-23 13:17:35 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-23 15:31:56 +0100
commit4debc033dec4d702a0666027c2a09044d02aacc8 (patch)
treeee227cf5e31a1c40c8e7854e155b50426d330e91 /include/dom
parent89fe0e619357ddf707a2d301794b9ceb928a7836 (diff)
downloadlibdom-4debc033dec4d702a0666027c2a09044d02aacc8.tar.gz
libdom-4debc033dec4d702a0666027c2a09044d02aacc8.tar.bz2
Make HTMLDList IDL to c name mapping consistant
Diffstat (limited to 'include/dom')
-rw-r--r--include/dom/html/html_dlist_element.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/dom/html/html_dlist_element.h b/include/dom/html/html_dlist_element.h
index e537994..e628a63 100644
--- a/include/dom/html/html_dlist_element.h
+++ b/include/dom/html/html_dlist_element.h
@@ -5,19 +5,19 @@
* Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
* Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
*/
-#ifndef dom_html_d_list_element_h_
-#define dom_html_d_list_element_h_
+#ifndef dom_html_dlist_element_h_
+#define dom_html_dlist_element_h_
#include <stdbool.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
-typedef struct dom_html_d_list_element dom_html_d_list_element;
+typedef struct dom_html_dlist_element dom_html_dlist_element;
-dom_exception dom_html_d_list_element_get_compact(
- dom_html_d_list_element *ele, bool *compact);
+dom_exception dom_html_dlist_element_get_compact(
+ dom_html_dlist_element *ele, bool *compact);
-dom_exception dom_html_d_list_element_set_compact(
- dom_html_d_list_element *ele, bool compact);
+dom_exception dom_html_dlist_element_set_compact(
+ dom_html_dlist_element *ele, bool compact);
#endif