summaryrefslogtreecommitdiff
path: root/src/html/html_document.c
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
commit05a3cf37e14017a3593ed9e17e4a83b003ef29d6 (patch)
tree545dfc0006eeddcd000a1071c7c62afe3e47e5b5 /src/html/html_document.c
parent1a3c1680b48a36b1f20ae40ee80ebc8d45e81ce1 (diff)
downloadlibdom-05a3cf37e14017a3593ed9e17e4a83b003ef29d6.tar.gz
libdom-05a3cf37e14017a3593ed9e17e4a83b003ef29d6.tar.bz2
s/struct dom_string/dom_string/g
svn path=/trunk/libdom/; revision=12172
Diffstat (limited to 'src/html/html_document.c')
-rw-r--r--src/html/html_document.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/html/html_document.c b/src/html/html_document.c
index a2845aa..6b9eb5c 100644
--- a/src/html/html_document.c
+++ b/src/html/html_document.c
@@ -72,7 +72,7 @@ dom_exception dom_html_document_complete(void);
* as the returned title.
*/
dom_exception dom_html_document_get_title(dom_html_document *doc,
- struct dom_string **title)
+ dom_string **title)
{
UNUSED(doc);
UNUSED(title);
@@ -81,13 +81,13 @@ dom_exception dom_html_document_get_title(dom_html_document *doc,
}
dom_exception dom_html_document_set_title(dom_html_document *doc,
- struct dom_string *title);
+ dom_string *title);
dom_exception dom_html_document_get_referer(dom_html_document *doc,
- struct dom_string **referer);
+ dom_string **referer);
dom_exception dom_html_document_get_domain(dom_html_document *doc,
- struct dom_string **domain);
+ dom_string **domain);
dom_exception dom_html_document_get_url(dom_html_document *doc,
- struct dom_string **url);
+ dom_string **url);
dom_exception dom_html_document_get_body(dom_html_document *doc,
struct dom_html_element **body);
dom_exception dom_html_document_set_body(dom_html_document *doc,
@@ -103,16 +103,16 @@ dom_exception dom_html_document_get_forms(dom_html_document *doc,
dom_exception dom_html_document_get_anchors(dom_html_document *doc,
struct dom_html_collection **col);
dom_exception dom_html_document_get_cookie(dom_html_document *doc,
- struct dom_string **cookie);
+ dom_string **cookie);
dom_exception dom_html_document_set_cookie(dom_html_document *doc,
- struct dom_string *cookie);
+ dom_string *cookie);
dom_exception dom_html_document_open(dom_html_document *doc);
dom_exception dom_html_document_close(dom_html_document *doc);
dom_exception dom_html_document_write(dom_html_document *doc,
- struct dom_string *text);
+ dom_string *text);
dom_exception dom_html_document_writeln(dom_html_document *doc,
- struct dom_string *text);
+ dom_string *text);
dom_exception dom_html_document_get_elements_by_name(dom_html_document *doc,
- struct dom_string *name, struct dom_nodelist **list);
+ dom_string *name, struct dom_nodelist **list);