From 0d6b3576dc5ac2b7fb2154fd6028a67b252d4a82 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Fri, 1 Oct 2004 21:33:20 +0000 Subject: [project @ 2004-10-01 21:33:20 by jmb] Oops, missed this from last checkin. svn path=/import/netsurf/; revision=1298 --- riscos/gui.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/riscos/gui.c b/riscos/gui.c index 7edd73cdb..7edaa2a6f 100644 --- a/riscos/gui.c +++ b/riscos/gui.c @@ -499,7 +499,7 @@ void gui_init2(int argc, char** argv) #endif if (open_window) - browser_window_create(url, NULL); + browser_window_create(url, NULL, 0); free(url); } @@ -900,12 +900,12 @@ void ro_gui_icon_bar_click(wimp_pointer *pointer) } else if (pointer->buttons == wimp_CLICK_SELECT) { if (option_homepage_url && option_homepage_url[0]) { - browser_window_create(option_homepage_url, NULL); + browser_window_create(option_homepage_url, NULL, 0); } else { snprintf(url, sizeof url, "file://Docs/intro_%s", option_language); - browser_window_create(url, NULL); + browser_window_create(url, NULL, 0); } } else if (pointer->buttons == wimp_CLICK_ADJUST) { @@ -1164,9 +1164,9 @@ void ro_msg_dataload(wimp_message *message) return; if (g) - browser_window_go(g->bw, url, false); + browser_window_go(g->bw, url, 0); else - browser_window_create(url, 0); + browser_window_create(url, 0, 0); free(url); } @@ -1388,7 +1388,7 @@ void ro_msg_dataopen(wimp_message *message) url = ro_path_to_url(message->data.data_xfer.file_name); } if (url) { - browser_window_create(url, NULL); + browser_window_create(url, NULL, 0); free(url); } } @@ -1475,7 +1475,7 @@ void ro_gui_open_help_page(const char *page) if ((length = snprintf(url, sizeof url, "file://Docs/%s_%s", page, option_language)) >= 0 && length < (int)sizeof(url)) - browser_window_create(url, NULL); + browser_window_create(url, NULL, 0); } /** -- cgit v1.2.3