Fix probable cut-and-pasteo.

svn path=/trunk/; revision=42185
This commit is contained in:
Guy Harris 2012-04-21 20:38:18 +00:00
parent b8087943a1
commit 780061ed74

View file

@ -1904,9 +1904,9 @@ GtkWidget * ws_gtk_box_new(GtkOrientation orientation, gint spacing, gboolean ho
GtkWidget * gtk_button_box_new(GtkOrientation orientation)
{
if (orientation == GTK_ORIENTATION_HORIZONTAL){
return gtk_hbutton_box_new(void);
return gtk_hbutton_box_new();
}else{
return gtk_vbutton_box_new(void);
return gtk_vbutton_box_new();
}
}
#endif /* GTK_CHECK_VERSION(3,0,0) */