From 3fc26e94bacf14b60b8092756414b5093ff4c18c Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Mon, 8 Feb 2016 16:47:36 +0100 Subject: Gtk+3: Replace deprecated gtk_{v,h}box_new --- applets/notification_area/testtray.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'applets/notification_area/testtray.c') diff --git a/applets/notification_area/testtray.c b/applets/notification_area/testtray.c index 4a2d0108..74cde0e7 100644 --- a/applets/notification_area/testtray.c +++ b/applets/notification_area/testtray.c @@ -29,6 +29,11 @@ #define NOTIFICATION_AREA_ICON "mate-panel-notification-area" +#if GTK_CHECK_VERSION (3, 0, 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 guint n_windows = 0; typedef struct -- cgit v1.2.1