aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-04-21 20:38:18 +0000
committerGuy Harris <guy@alum.mit.edu>2012-04-21 20:38:18 +0000
commit780061ed7469efc504128d8e61a1e8ad0b219c5c (patch)
treeb95102db50254b0fda326d5ef77008a6d7b35519 /ui
parentb8087943a1dfd556ca91cf94c3746f8cb47cf0d6 (diff)
Fix probable cut-and-pasteo.
svn path=/trunk/; revision=42185
Diffstat (limited to 'ui')
-rw-r--r--ui/gtk/gui_utils.c4
1 files 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) */