From 780061ed7469efc504128d8e61a1e8ad0b219c5c Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sat, 21 Apr 2012 20:38:18 +0000 Subject: Fix probable cut-and-pasteo. svn path=/trunk/; revision=42185 --- ui/gtk/gui_utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/gtk/gui_utils.c b/ui/gtk/gui_utils.c index 410a209621..49f97598c1 100644 --- a/ui/gtk/gui_utils.c +++ b/ui/gtk/gui_utils.c @@ -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) */ -- cgit v1.2.1