summaryrefslogtreecommitdiff
path: root/include/dom/html/html_title_element.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-04-07 23:28:32 +0000
commit4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43 (patch)
tree545dfc0006eeddcd000a1071c7c62afe3e47e5b5 /include/dom/html/html_title_element.h
parentd24960dac782ef8e54ed91692f6aec1dd6d08bc1 (diff)
downloadlibdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.gz
libdom-4ade8ad1c7b23e6eeeee6681acbdb43fb10cab43.tar.bz2
s/struct dom_string/dom_string/g
svn path=/trunk/libdom/; revision=12172
Diffstat (limited to 'include/dom/html/html_title_element.h')
-rw-r--r--include/dom/html/html_title_element.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/dom/html/html_title_element.h b/include/dom/html/html_title_element.h
index 5da766a..24a3b63 100644
--- a/include/dom/html/html_title_element.h
+++ b/include/dom/html/html_title_element.h
@@ -9,16 +9,15 @@
#define dom_html_title_element_h_
#include <dom/core/exceptions.h>
-
-struct dom_string;
+#include <dom/core/string.h>
typedef struct dom_html_title_element dom_html_title_element;
dom_exception dom_html_title_element_get_text(dom_html_title_element *ele,
- struct dom_string **text);
+ dom_string **text);
dom_exception dom_html_title_element_set_text(dom_html_title_element *ele,
- struct dom_string *text);
+ dom_string *text);
#endif