Fix BeOS build. We don't handle tabs yet though.

svn path=/trunk/netsurf/; revision=5209
This commit is contained in:
François Revel 2008-08-26 23:58:27 +00:00
parent c7da20b4c1
commit 7330f726e5
2 changed files with 2 additions and 2 deletions

View File

@ -603,7 +603,7 @@ void gui_init2(int argc, char** argv)
addr = option_homepage_url;
if (argc > 1) addr = argv[1];
browser_window_create(addr, 0, 0, true);
browser_window_create(addr, 0, 0, true, false);
}

View File

@ -251,7 +251,7 @@ float nsbeos_get_scale_for_gui(struct gui_window *g)
/* Create a gui_window */
struct gui_window *gui_create_browser_window(struct browser_window *bw,
struct browser_window *clone)
struct browser_window *clone, bool new_tab)
{
struct gui_window *g; /**< what we're creating to return */