summaryrefslogtreecommitdiff
path: root/riscos/gui.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-10-25 00:35:49 +0000
committerJames Bursa <james@netsurf-browser.org>2003-10-25 00:35:49 +0000
commitf1375fe19db064fcebf00433ce73eab99be038ef (patch)
tree19e239a41a8a68baab5b444447adc3aae5bf04fa /riscos/gui.c
parent099d537267e8e4114128e59e2614c99d77dd4feb (diff)
downloadnetsurf-f1375fe19db064fcebf00433ce73eab99be038ef.tar.gz
netsurf-f1375fe19db064fcebf00433ce73eab99be038ef.tar.bz2
[project @ 2003-10-25 00:35:49 by bursa]
Split out and clean up form submit code. svn path=/import/netsurf/; revision=374
Diffstat (limited to 'riscos/gui.c')
-rw-r--r--riscos/gui.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index ca21c4e83..328d40691 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -25,6 +25,7 @@
#include "netsurf/desktop/netsurf.h"
#include "netsurf/desktop/options.h"
#include "netsurf/render/font.h"
+#include "netsurf/render/form.h"
#include "netsurf/render/html.h"
#include "netsurf/riscos/about.h"
#include "netsurf/riscos/gui.h"
@@ -71,7 +72,7 @@ int ro_save_data(void *data, unsigned long length, char *file_name, bits file_ty
wimp_menu* combo_menu;
-struct gui_gadget* current_gadget;
+struct form_control* current_gadget;
int TOOLBAR_HEIGHT = 128;
@@ -1282,10 +1283,10 @@ void gui_window_stop_throbber(gui_window* g)
wimp_set_icon_state(g->data.browser.toolbar, ro_theme_icon(current_theme, THEME_TOOLBAR, "TOOLBAR_THROBBER"), 0, 0);
}
-void gui_gadget_combo(struct browser_window* bw, struct gui_gadget* g, unsigned long mx, unsigned long my)
+void gui_gadget_combo(struct browser_window* bw, struct form_control* g, unsigned long mx, unsigned long my)
{
int count = 0;
- struct formoption* o;
+ struct form_option* o;
wimp_pointer pointer;
if (combo_menu != NULL)