Squash warnings

svn path=/trunk/netsurf/; revision=10866
This commit is contained in:
John Mark Bell 2010-10-05 19:24:54 +00:00
parent 6173bb0e6c
commit 864f682465
1 changed files with 5 additions and 2 deletions

View File

@ -940,7 +940,7 @@ create_toolbar(struct gui_window *gw,
fbtk_widget_t *widget;
int xpos; /* The position of the next widget. */
int xlhs; /* extent of the left hand side widgets */
int xlhs = 0; /* extent of the left hand side widgets */
int xdir = 1; /* the direction of movement + or - 1 */
const char *itmtype; /* type of the next item */
@ -1117,13 +1117,16 @@ create_toolbar(struct gui_window *gw,
break;
default:
widget = NULL;
xdir = 0;
LOG(("Unknown element %c in toolbar layout", *itmtype));
break;
}
if (widget != NULL) {
xpos += (xdir * (fbtk_get_width(widget) + padding));
}
LOG(("xpos is %d",xpos));