From 77a9d997ce7c0370571f86173dbb7a81298fd0cf Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 5 Sep 2011 12:27:06 +0000 Subject: Delete dead handling of frame creation destruction. svn path=/trunk/netsurf/; revision=12734 --- atari/gui.c | 40 ++++++++++++---------------------------- 1 file changed, 12 insertions(+), 28 deletions(-) diff --git a/atari/gui.c b/atari/gui.c index 3f5dd1957..c06c51481 100755 --- a/atari/gui.c +++ b/atari/gui.c @@ -183,8 +183,8 @@ gui_create_browser_window(struct browser_window *bw, struct gui_window *gw=NULL; struct gui_window * gwroot ; short winloc[4]; - LOG(( "gw: %p, BW: %p, clone %p, tab: %d, type: %d\n" , gw, bw, clone, - (int)new_tab, bw->browser_window_type + LOG(( "gw: %p, BW: %p, clone %p, tab: %d\n" , gw, bw, clone, + (int)new_tab )); gw = malloc( sizeof(struct gui_window) ); @@ -192,23 +192,15 @@ gui_create_browser_window(struct browser_window *bw, return NULL; memset( gw, 0, sizeof(struct gui_window) ); - switch(bw->browser_window_type) { - case BROWSER_WINDOW_NORMAL: - - LOG(("normal browser window: %p, bw: %p\n", gw, bw)); - window_create(gw, bw, WIDGET_STATUSBAR|WIDGET_TOOLBAR ); - if( gw->root->handle ) { - window_open( gw ); - /* Recalculate windows browser area now */ - browser_update_rects( gw ); - tb_update_buttons( gw ); - input_window = gw; - /* TODO:... this line: placeholder to create a local history widget ... */ - } - break; - - default: - LOG(("unhandled type!")); + LOG(("new window: %p, bw: %p\n", gw, bw)); + window_create(gw, bw, WIDGET_STATUSBAR|WIDGET_TOOLBAR ); + if( gw->root->handle ) { + window_open( gw ); + /* Recalculate windows browser area now */ + browser_update_rects( gw ); + tb_update_buttons( gw ); + input_window = gw; + /* TODO:... this line: placeholder to create a local history widget ... */ } /* add the window to the window list: */ @@ -239,16 +231,8 @@ void gui_window_destroy(struct gui_window *w) input_window = NULL; - switch(w->browser->bw->browser_window_type) { + window_destroy( w ); - case BROWSER_WINDOW_NORMAL: - window_destroy( w ); - break; - default: - LOG(("Unhandled type!")); - assert( 1 == 0 ); - break; - } /* unlink the window: */ if(w->prev != NULL ) { w->prev->next = w->next; -- cgit v1.2.3