summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-12-06 23:38:53 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-12-06 23:38:53 +0000
commit69f0aa360cb2b603ce1f7434312c62a24b7693f9 (patch)
treeb75a2f2c4609ccbc0fd4193dab4e861a44e3cd61 /include/dom/html
parent75d7ce5895a98026a3e4b0e03fafc0b3761a07f1 (diff)
downloadlibdom-69f0aa360cb2b603ce1f7434312c62a24b7693f9.tar.gz
libdom-69f0aa360cb2b603ce1f7434312c62a24b7693f9.tar.bz2
Provide mechanism for binding/client to define the features a document object should support.
Utilise this to decide whether to create a raw Document or an HTMLDocument instance. Disable the above decision, as the HTMLDocument implementation is garbage svn path=/trunk/libdom/; revision=11025
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dom/html/html_document.h b/include/dom/html/html_document.h
index 00a355e..230024a 100644
--- a/include/dom/html/html_document.h
+++ b/include/dom/html/html_document.h
@@ -43,7 +43,7 @@ typedef struct dom_ui_handler dom_ui_handler;
/* Create a HTMLDocument */
dom_exception dom_html_document_create(dom_alloc alloc, void *pw, dom_msg msg,
void *msg_pw,
- dom_events_default_action_fetcher daf, dom_ui_handler ui,
+ dom_events_default_action_fetcher daf, dom_ui_handler *ui,
dom_parser_type pt, dom_html_document **doc);
/* Parse a data chunk into the HTMLDocument */