Insert missing breaks. If these cases really should fall through, they need commenting, instead.

svn path=/trunk/netsurf/; revision=9699
This commit is contained in:
John Mark Bell 2009-11-22 14:44:58 +00:00
parent e88a276d91
commit ea288ade79
1 changed files with 3 additions and 1 deletions

View File

@ -486,8 +486,9 @@ fb_browser_window_click(fbtk_widget_t *widget,
break;
}
case NSFB_EVENT_KEY_UP:
break;
case NSFB_EVENT_KEY_UP:
switch (event->value.keycode) {
case NSFB_KEY_MOUSE_1:
browser_window_mouse_click(bw,
@ -508,6 +509,7 @@ fb_browser_window_click(fbtk_widget_t *widget,
}
break;
default:
break;