summaryrefslogtreecommitdiff
path: root/include/dom/html/html_title_element.h
diff options
context:
space:
mode:
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