Remove dead code.

svn path=/trunk/netsurf/; revision=10602
This commit is contained in:
Michael Drake 2010-07-06 20:29:16 +00:00
parent 71644097be
commit e08255f3ee

View File

@ -705,14 +705,10 @@ bool html_redraw_box(struct box *box,
CSS_OVERFLOW_SCROLL ||
css_computed_overflow(box->style) ==
CSS_OVERFLOW_AUTO)) {
has_x_scroll = false;
has_y_scroll = false;
has_x_scroll = box_hscrollbar_present(box);
has_y_scroll = box_vscrollbar_present(box);
if (!box_handle_scrollbars(current_redraw_browser,box,
has_x_scroll, has_y_scroll))
return false;