summaryrefslogtreecommitdiff
path: root/src/html/html_input_element.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-25 18:54:22 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-25 18:54:22 +0000
commitdf9016f830a109f70fb1a418ae189c0a3e607cca (patch)
treeaf6e2cb16c8f25b846a7a73f0b7ae5077bd811c3 /src/html/html_input_element.c
parent3963f406d9139eec74f537378c46ca04dfaf4e59 (diff)
downloadlibdom-df9016f830a109f70fb1a418ae189c0a3e607cca.tar.gz
libdom-df9016f830a109f70fb1a418ae189c0a3e607cca.tar.bz2
Update the input element API to use dom_ulong where apropriate
Diffstat (limited to 'src/html/html_input_element.c')
-rw-r--r--src/html/html_input_element.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/html/html_input_element.c b/src/html/html_input_element.c
index 84079f7..bbea087 100644
--- a/src/html/html_input_element.c
+++ b/src/html/html_input_element.c
@@ -362,16 +362,16 @@ SIMPLE_GET_SET(use_map);
SIMPLE_GET_SET(value);
dom_exception dom_html_input_element_get_size(
- dom_html_input_element *input, int32_t *size)
+ dom_html_input_element *input, dom_ulong *size)
{
- return dom_html_element_get_int32_t_property(&input->base, "size",
+ return dom_html_element_get_dom_ulong_property(&input->base, "size",
SLEN("size"), size);
}
dom_exception dom_html_input_element_set_size(
- dom_html_input_element *input, uint32_t size)
+ dom_html_input_element *input, dom_ulong size)
{
- return dom_html_element_set_int32_t_property(&input->base, "size",
+ return dom_html_element_set_dom_ulong_property(&input->base, "size",
SLEN("size"), size);
}
dom_exception dom_html_input_element_get_tab_index(