summaryrefslogtreecommitdiff
path: root/riscos/window.c
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-07-07 22:09:26 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-07-07 22:09:26 +0000
commitcfe6cd43dc6f83885f98bc14837bac195cb69eeb (patch)
treee6b1e3f7f042bdf8e34514eb62f28c151be23afd /riscos/window.c
parentc01b0bf64536306498e96b845a052eab7fd084a1 (diff)
downloadnetsurf-cfe6cd43dc6f83885f98bc14837bac195cb69eeb.tar.gz
netsurf-cfe6cd43dc6f83885f98bc14837bac195cb69eeb.tar.bz2
[project @ 2004-07-07 22:09:26 by rjw]
Minor GUI fixes for hotlist. Hotlist toolbar. svn path=/import/netsurf/; revision=1054
Diffstat (limited to 'riscos/window.c')
-rw-r--r--riscos/window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/riscos/window.c b/riscos/window.c
index bbcc01d99..59cbb8c03 100644
--- a/riscos/window.c
+++ b/riscos/window.c
@@ -167,7 +167,7 @@ gui_window *gui_create_browser_window(struct browser_window *bw,
return 0;
}
- ro_theme_create_toolbar(g);
+ ro_theme_create_browser_toolbar(g);
g->next = window_list;
window_list = g;
@@ -577,7 +577,7 @@ void ro_gui_window_open(gui_window *g, wimp_open *open) {
g->data.browser.old_height = height;
}
- ro_theme_resize_toolbar(g);
+ ro_theme_resize_toolbar(g->data.browser.toolbar, g->window);
}
@@ -1318,7 +1318,7 @@ void gui_window_clone_options(struct browser_window *new_bw,
new_gui->data.browser.toolbar->url_bar = option_toolbar_show_address;
new_gui->data.browser.toolbar->throbber = option_toolbar_show_throbber;
}
- ro_theme_update_toolbar(new_gui);
+ ro_theme_update_toolbar(new_gui->data.browser.toolbar, new_gui->window);
}
}