From 3e222bb72fd8ee2b33a6a3b9e9ee0f0fed983959 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Wed, 22 Jul 2015 15:09:47 +0200 Subject: GTK3: replace deprecated gtk_[v/h]_box_new --- src/themes/standard/theme.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/themes/standard') diff --git a/src/themes/standard/theme.c b/src/themes/standard/theme.c index bdcfc2d..9a69e61 100644 --- a/src/themes/standard/theme.c +++ b/src/themes/standard/theme.c @@ -103,6 +103,11 @@ enum { #define BACKGROUND_OPACITY 0.92 #define BOTTOM_GRADIENT_HEIGHT 30 +#if GTK_CHECK_VERSION (3, 2, 0) +#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) +#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y) +#endif + static void fill_background(GtkWidget* widget, WindowData* windata, cairo_t* cr) { GtkStyle* style; -- cgit v1.2.1