summaryrefslogtreecommitdiff
path: root/ui/gtk/gui_utils.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-04-21 20:06:51 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-04-21 20:06:51 +0000
commit60cb4652e4a0cb58a950a6beffbe25a0277ce543 (patch)
tree64f3484d1597dc9babeec342195448de316b73ea /ui/gtk/gui_utils.h
parent63040040d2b76b8988dc5df4ac51adaaf7e676dc (diff)
downloadwireshark-60cb4652e4a0cb58a950a6beffbe25a0277ce543.tar.gz
gtk_button_box_new() for pre GTK 3.0
svn path=/trunk/; revision=42183
Diffstat (limited to 'ui/gtk/gui_utils.h')
-rw-r--r--ui/gtk/gui_utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/gtk/gui_utils.h b/ui/gtk/gui_utils.h
index d51acc13bf..cdef1c0c85 100644
--- a/ui/gtk/gui_utils.h
+++ b/ui/gtk/gui_utils.h
@@ -517,4 +517,7 @@ GdkPixbuf *gdk_pixbuf_get_from_surface (cairo_surface_t *surface,
*/
GtkWidget * ws_gtk_box_new(GtkOrientation orientation, gint spacing, gboolean homogeneous);
+#if !GTK_CHECK_VERSION(3,0,0)
+GtkWidget * gtk_button_box_new(GtkOrientation orientation);
+#endif /* GTK_CHECK_VERSION(3,0,0) */
#endif /* __GUI_UTIL__H__ */