add explicit cast to avoid a compiler warning

svn path=/trunk/; revision=48568
This commit is contained in:
Martin Kaiser 2013-03-26 20:33:49 +00:00
parent a0a1082e01
commit f808eb08f0
1 changed files with 2 additions and 1 deletions

View File

@ -1877,7 +1877,8 @@ void
ws_gtk_grid_attach_defaults(GtkGrid *grid, GtkWidget *child, gint left, gint top, gint width, gint height)
{
/* Use defaults for [x|y]options and [x|y]padding which match those for gtk_table_attach_defaults() */
ws_gtk_grid_attach_extended(grid, child, left, top, width, height, GTK_EXPAND|GTK_FILL, GTK_EXPAND|GTK_FILL, 0, 0);
ws_gtk_grid_attach_extended(grid, child, left, top, width, height,
(GtkAttachOptions)(GTK_EXPAND|GTK_FILL), (GtkAttachOptions)(GTK_EXPAND|GTK_FILL), 0, 0);
}
void