From a77488bab4732c30044b04e97d13707e03825bdf Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Mon, 10 Sep 2012 19:14:49 +0100 Subject: unsigned long -> uint32_t, signed long and long -> int32_t, plus collateral fixes. Test suite does not pass --- include/dom/html/html_text_area_element.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'include/dom/html/html_text_area_element.h') diff --git a/include/dom/html/html_text_area_element.h b/include/dom/html/html_text_area_element.h index ce610ad..9954e04 100644 --- a/include/dom/html/html_text_area_element.h +++ b/include/dom/html/html_text_area_element.h @@ -37,16 +37,16 @@ dom_exception dom_html_text_area_element_set_disabled( dom_html_text_area_element *text_area, bool disabled); dom_exception dom_html_text_area_element_get_cols( - dom_html_text_area_element *text_area, long *cols); + dom_html_text_area_element *text_area, int32_t *cols); dom_exception dom_html_text_area_element_set_cols( - dom_html_text_area_element *text_area, unsigned long cols); + dom_html_text_area_element *text_area, uint32_t cols); dom_exception dom_html_text_area_element_get_rows( - dom_html_text_area_element *text_area, long *rows); + dom_html_text_area_element *text_area, int32_t *rows); dom_exception dom_html_text_area_element_set_rows( - dom_html_text_area_element *text_area, unsigned long rows); + dom_html_text_area_element *text_area, uint32_t rows); dom_exception dom_html_text_area_element_get_name( dom_html_text_area_element *text_area, dom_string **name); @@ -61,10 +61,10 @@ dom_exception dom_html_text_area_element_set_read_only( dom_html_text_area_element *text_area, bool read_only); dom_exception dom_html_text_area_element_get_tab_index( - dom_html_text_area_element *text_area, long *tab_index); + dom_html_text_area_element *text_area, int32_t *tab_index); dom_exception dom_html_text_area_element_set_tab_index( - dom_html_text_area_element *text_area, unsigned long tab_index); + dom_html_text_area_element *text_area, uint32_t tab_index); dom_exception dom_html_text_area_element_get_type( dom_html_text_area_element *text_area, dom_string **type); -- cgit v1.2.3