summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-10-25 14:13:49 +0000
committerJames Bursa <james@netsurf-browser.org>2003-10-25 14:13:49 +0000
commit28f974f00f43d3a04c0bcae32e7cfc85ee66df20 (patch)
tree9ab73b22014e6da29c851698b0f7c0262260cc8e /riscos
parentf1375fe19db064fcebf00433ce73eab99be038ef (diff)
downloadnetsurf-28f974f00f43d3a04c0bcae32e7cfc85ee66df20.tar.gz
netsurf-28f974f00f43d3a04c0bcae32e7cfc85ee66df20.tar.bz2
[project @ 2003-10-25 14:13:49 by bursa]
URL encoded POST support. svn path=/import/netsurf/; revision=375
Diffstat (limited to 'riscos')
-rw-r--r--riscos/401login.c2
-rw-r--r--riscos/gui.c3
-rw-r--r--riscos/mouseactions.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/riscos/401login.c b/riscos/401login.c
index 0ab0ffbea..edd081cc0 100644
--- a/riscos/401login.c
+++ b/riscos/401login.c
@@ -136,5 +136,5 @@ void do_thing() {
break;
}
if (gw != NULL)
- browser_window_open_location_historical(gw->data.browser.bw, url);
+ browser_window_open_location_historical(gw->data.browser.bw, url, 0, 0);
}
diff --git a/riscos/gui.c b/riscos/gui.c
index 328d40691..3979fd691 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -732,7 +732,8 @@ void ro_gui_toolbar_click(gui_window* g, wimp_pointer* pointer)
}
else if (pointer->i == ro_theme_icon(current_theme, THEME_TOOLBAR, "TOOLBAR_RELOAD"))
{
- browser_window_open_location_historical(g->data.browser.bw, g->data.browser.bw->url);
+ browser_window_open_location_historical(g->data.browser.bw,
+ g->data.browser.bw->url, 0, 0);
}
}
diff --git a/riscos/mouseactions.c b/riscos/mouseactions.c
index 265465b5b..6c0bd6289 100644
--- a/riscos/mouseactions.c
+++ b/riscos/mouseactions.c
@@ -56,7 +56,7 @@ void ro_gui_mouse_action(gui_window *g) {
case mouseaction_RELOAD:
browser_window_open_location_historical(g->data.browser.bw,
- g->data.browser.bw->url);
+ g->data.browser.bw->url, 0, 0);
break;
}
}