summaryrefslogtreecommitdiff
path: root/riscos/mouseactions.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-01-20 19:08:34 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-01-20 19:08:34 +0000
commit0dab93fe7652dd1f1c656356a62f01d4053bb2ff (patch)
tree3b3d7bc784d3f39f2474b231e4727288144b5902 /riscos/mouseactions.c
parent10b546f7f974ac8e157426ee42d7abdd52dbf14b (diff)
downloadnetsurf-0dab93fe7652dd1f1c656356a62f01d4053bb2ff.tar.gz
netsurf-0dab93fe7652dd1f1c656356a62f01d4053bb2ff.tar.bz2
[project @ 2004-01-20 19:08:34 by jmb]
Allow toggling of POST support. Add new toolbar icon numbers to riscos/gui.h svn path=/import/netsurf/; revision=490
Diffstat (limited to 'riscos/mouseactions.c')
-rw-r--r--riscos/mouseactions.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/riscos/mouseactions.c b/riscos/mouseactions.c
index b5e3fc550..9c7f76ea6 100644
--- a/riscos/mouseactions.c
+++ b/riscos/mouseactions.c
@@ -9,6 +9,7 @@
#include "oslib/os.h"
+#include "netsurf/utils/config.h"
#include "netsurf/desktop/browser.h"
#include "netsurf/desktop/options.h"
#include "netsurf/riscos/gui.h"
@@ -56,7 +57,11 @@ 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, 0, 0);
+ g->data.browser.bw->url
+#ifdef WITH_POST
+ , 0, 0
+#endif
+ );
break;
default: break;