summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-06-03 10:53:17 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:12 +0530
commit862b8be1defce10068f3876aaaa8de8edf65b4ed (patch)
treeb1c21e4e15055cd38a8d714f1492a9bb160025c3 /include
parentac0a6be4a62b2fa9830184def0652a499df1398b (diff)
downloadlibdom-862b8be1defce10068f3876aaaa8de8edf65b4ed.tar.gz
libdom-862b8be1defce10068f3876aaaa8de8edf65b4ed.tar.bz2
changing size attribute of Input Element to be of type int
Diffstat (limited to 'include')
-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);