summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-16 14:25:31 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2014-11-16 14:25:31 +0000
commit7cb7879427b67edf608ff1768cc1440373348cc2 (patch)
treebeca6d5a0c65a21d9fecfcdd1da4027912ac3f57 /amiga
parente3620ac6758eb07c77f4d420402f85dbd717035f (diff)
downloadnetsurf-7cb7879427b67edf608ff1768cc1440373348cc2.tar.gz
netsurf-7cb7879427b67edf608ff1768cc1440373348cc2.tar.bz2
Remove a loop which appears to do nothing
Diffstat (limited to 'amiga')
-rw-r--r--amiga/gui.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 12b76273c..d52df1f91 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2374,26 +2374,9 @@ static void ami_handle_msg(void)
case WMHI_NEWSIZE:
switch(node->Type)
{
- struct Node *tab = NULL, *ntab = NULL;
- struct gui_window *gw = NULL;
-
case AMINS_WINDOW:
ami_set_border_gadget_size(gwin);
ami_throbber_redraw_schedule(0, gwin->bw->window);
-
- if(gwin->tabs)
- {
- tab = GetHead(&gwin->tab_list);
-
- do
- {
- ntab=GetSucc(tab);
- GetClickTabNodeAttrs(tab,
- TNA_UserData, &gw,
- TAG_DONE);
- } while((tab=ntab));
- }
-
ami_schedule(0, ami_gui_refresh_favicon, gwin);
browser_window_schedule_reformat(gwin->bw);
ami_schedule_redraw(gwin, true);