summaryrefslogtreecommitdiff
path: root/include/dom/html/html_input_element.h
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-06-03 10:53:17 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-21 17:37:14 +0530
commit1cca41793dd6acc052bae2f1464eedd094c84f58 (patch)
tree7a60eaccc35467de1ad7dfe97ebf13f883e71b0a /include/dom/html/html_input_element.h
parentfcfdb66ecfb1121f56a849ef087930cac017a5ed (diff)
downloadlibdom-1cca41793dd6acc052bae2f1464eedd094c84f58.tar.gz
libdom-1cca41793dd6acc052bae2f1464eedd094c84f58.tar.bz2
changing size attribute of Input Element to be of type int
Diffstat (limited to 'include/dom/html/html_input_element.h')
-rw-r--r--include/dom/html/html_input_element.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/dom/html/html_input_element.h b/include/dom/html/html_input_element.h
index eb6aecd..086e1cb 100644
--- a/include/dom/html/html_input_element.h
+++ b/include/dom/html/html_input_element.h
@@ -85,10 +85,10 @@ dom_exception dom_html_input_element_set_read_only(
dom_html_input_element *input, bool read_only);
dom_exception dom_html_input_element_get_size(
- dom_html_input_element *input, dom_string **size);
+ dom_html_input_element *input, int32_t *size);
dom_exception dom_html_input_element_set_size(
- dom_html_input_element *input, dom_string *size);
+ dom_html_input_element *input, uint32_t size);
dom_exception dom_html_input_element_get_src(
dom_html_input_element *input, dom_string **src);