diff options
author | raveit65 <[email protected]> | 2015-07-22 15:09:47 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2015-07-22 15:09:47 +0200 |
commit | 3e222bb72fd8ee2b33a6a3b9e9ee0f0fed983959 (patch) | |
tree | 0a598331cf492e962f2240a330c7d2b04a1138e1 /src/themes/slider/theme.c | |
parent | a012a1220be5092448b92ac611dd978afcb7efd1 (diff) | |
download | mate-notification-daemon-3e222bb72fd8ee2b33a6a3b9e9ee0f0fed983959.tar.bz2 mate-notification-daemon-3e222bb72fd8ee2b33a6a3b9e9ee0f0fed983959.tar.xz |
GTK3: replace deprecated gtk_[v/h]_box_new
Diffstat (limited to 'src/themes/slider/theme.c')
-rw-r--r-- | src/themes/slider/theme.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/themes/slider/theme.c b/src/themes/slider/theme.c index dc369a7..16012a4 100644 --- a/src/themes/slider/theme.c +++ b/src/themes/slider/theme.c @@ -77,6 +77,11 @@ enum { #define MAX_ICON_SIZE IMAGE_SIZE +#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 draw_round_rect(cairo_t* cr, gdouble aspect, gdouble x, gdouble y, gdouble corner_radius, gdouble width, gdouble height) { gdouble radius = corner_radius / aspect; |