From d2d685818a85b773c49802c494a0c386917b5ee6 Mon Sep 17 00:00:00 2001 From: infirit Date: Wed, 26 Nov 2014 14:38:07 +0100 Subject: Gtk3: Silence GtkVbox and GtkHbox deprecation warnings --- timerapplet/timerapplet.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'timerapplet/timerapplet.c') diff --git a/timerapplet/timerapplet.c b/timerapplet/timerapplet.c index c5ff8a45..292ffda5 100644 --- a/timerapplet/timerapplet.c +++ b/timerapplet/timerapplet.c @@ -45,6 +45,10 @@ #define SHOW_NOTIFICATION_KEY "show-notification" #define SHOW_DIALOG_KEY "show-dialog" +#if GTK_CHECK_VERSION (3, 0, 0) +#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) +#endif + typedef struct { MatePanelApplet *applet; -- cgit v1.2.1