summaryrefslogtreecommitdiff
path: root/render/form.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-08-21 15:27:52 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2012-08-21 15:27:52 +0100
commitafdf72d7b58110b2848ed9be6b8c15cc45b59891 (patch)
treecf6833e477b774ccdecd6716ea1eb45cc119d2da /render/form.h
parent7ffe9c2b5d85057876252896219f712663f9a6fc (diff)
downloadnetsurf-afdf72d7b58110b2848ed9be6b8c15cc45b59891.tar.gz
netsurf-afdf72d7b58110b2848ed9be6b8c15cc45b59891.tar.bz2
Confine box_at_point to the document it's given. Callers are now responsible for calling whatever functionality for object boxes. Remove last bw dereference from render directory. Remove a couple of unused functions.
Diffstat (limited to 'render/form.h')
-rw-r--r--render/form.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/render/form.h b/render/form.h
index dab6a625d..c769dc960 100644
--- a/render/form.h
+++ b/render/form.h
@@ -33,6 +33,7 @@ struct box;
struct form_control;
struct form_option;
struct form_select_menu;
+struct html_content;
/** Form submit method. */
typedef enum {
@@ -175,6 +176,6 @@ void form_select_process_selection(hlcache_handle *h,
struct form_control *control, int item);
void form_submit(nsurl *page_url, struct browser_window *target,
struct form *form, struct form_control *submit_button);
-void form_radio_set(struct hlcache_handle *content, struct form_control *radio);
+void form_radio_set(struct html_content *html, struct form_control *radio);
#endif