summaryrefslogtreecommitdiff
path: root/include/dom
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-23 11:55:51 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-23 15:31:40 +0100
commit89fe0e619357ddf707a2d301794b9ceb928a7836 (patch)
tree35e37d9a2454318d9baea522a1b52eb2eccc5e3a /include/dom
parent0338d09eea66ede52ee364b8ca05986054bd077c (diff)
downloadlibdom-89fe0e619357ddf707a2d301794b9ceb928a7836.tar.gz
libdom-89fe0e619357ddf707a2d301794b9ceb928a7836.tar.bz2
Make HTMLOList IDL to c name mapping consistant
Diffstat (limited to 'include/dom')
-rw-r--r--include/dom/html/html_olist_element.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/include/dom/html/html_olist_element.h b/include/dom/html/html_olist_element.h
index 3d1511e..ca19ad1 100644
--- a/include/dom/html/html_olist_element.h
+++ b/include/dom/html/html_olist_element.h
@@ -5,31 +5,31 @@
* Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
* Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
*/
-#ifndef dom_html_o_list_element_h_
-#define dom_html_o_list_element_h_
+#ifndef dom_html_olist_element_h_
+#define dom_html_olist_element_h_
#include <stdbool.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
-typedef struct dom_html_o_list_element dom_html_o_list_element;
+typedef struct dom_html_olist_element dom_html_olist_element;
-dom_exception dom_html_o_list_element_get_compact(
- dom_html_o_list_element *ele, bool *compact);
+dom_exception dom_html_olist_element_get_compact(
+ dom_html_olist_element *ele, bool *compact);
-dom_exception dom_html_o_list_element_set_compact(
- dom_html_o_list_element *ele, bool compact);
+dom_exception dom_html_olist_element_set_compact(
+ dom_html_olist_element *ele, bool compact);
-dom_exception dom_html_o_list_element_get_start(
- dom_html_o_list_element *ele, int32_t *start);
+dom_exception dom_html_olist_element_get_start(
+ dom_html_olist_element *ele, int32_t *start);
-dom_exception dom_html_o_list_element_set_start(
- dom_html_o_list_element *ele, uint32_t start);
+dom_exception dom_html_olist_element_set_start(
+ dom_html_olist_element *ele, uint32_t start);
-dom_exception dom_html_o_list_element_get_type(
- dom_html_o_list_element *ele, dom_string **type);
+dom_exception dom_html_olist_element_get_type(
+ dom_html_olist_element *ele, dom_string **type);
-dom_exception dom_html_o_list_element_set_type(
- dom_html_o_list_element *ele, dom_string *type);
+dom_exception dom_html_olist_element_set_type(
+ dom_html_olist_element *ele, dom_string *type);
#endif