summaryrefslogtreecommitdiff
path: root/riscos/gui.c
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-04-22 18:24:18 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-04-22 18:24:18 +0000
commitc7f77b0165254152498a13749f8c3572b56efb00 (patch)
tree1e974bd4e81f538472f168bdd0d7365a7ee1a1b7 /riscos/gui.c
parent2b87a0b14874d9530d9aca3fb18f5bb74259beae (diff)
downloadnetsurf-c7f77b0165254152498a13749f8c3572b56efb00.tar.gz
netsurf-c7f77b0165254152498a13749f8c3572b56efb00.tar.bz2
Finish history cloning.
svn path=/trunk/netsurf/; revision=2547
Diffstat (limited to 'riscos/gui.c')
-rw-r--r--riscos/gui.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index 619a27548..9a6405d18 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -704,7 +704,7 @@ void gui_init2(int argc, char** argv)
#endif
if (open_window)
- browser_window_create(url, NULL, 0);
+ browser_window_create(url, NULL, 0, true);
free(url);
}
@@ -1196,12 +1196,12 @@ bool 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, 0);
+ browser_window_create(option_homepage_url, NULL, 0, true);
} else {
snprintf(url, sizeof url,
"file:///<NetSurf$Dir>/Docs/intro_%s",
option_language);
- browser_window_create(url, NULL, 0);
+ browser_window_create(url, NULL, 0, true);
}
} else if (pointer->buttons == wimp_CLICK_ADJUST) {
@@ -1522,7 +1522,7 @@ void ro_msg_dataload(wimp_message *message)
return;
if (g) {
- browser_window_go(g->bw, url, 0);
+ browser_window_go(g->bw, url, 0, true);
} else if ((hotlist_tree) && ((wimp_w)hotlist_tree->handle ==
message->data.data_xfer.w)) {
data = urldb_get_url_data(url);
@@ -1546,7 +1546,7 @@ void ro_msg_dataload(wimp_message *message)
ro_gui_tree_start_edit(hotlist_tree, &node->data, NULL);
}
} else {
- browser_window_create(url, 0, 0);
+ browser_window_create(url, 0, 0, true);
}
/* send DataLoadAck */
@@ -1904,7 +1904,7 @@ void ro_msg_dataopen(wimp_message *message)
return;
/* create a new window with the file */
- browser_window_create(url, NULL, 0);
+ browser_window_create(url, NULL, 0, true);
free(url);
}
@@ -2129,7 +2129,7 @@ void ro_gui_open_help_page(const char *page)
if ((length = snprintf(url, sizeof url,
"file:///<NetSurf$Dir>/Docs/%s_%s",
page, option_language)) >= 0 && length < (int)sizeof(url))
- browser_window_create(url, NULL, 0);
+ browser_window_create(url, NULL, 0, true);
}
/**