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 --- geyes/geyes.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'geyes/geyes.c') diff --git a/geyes/geyes.c b/geyes/geyes.c index 161c1682..49a79402 100644 --- a/geyes/geyes.c +++ b/geyes/geyes.c @@ -27,6 +27,11 @@ #define UPDATE_TIMEOUT 100 +#if GTK_CHECK_VERSION (3, 0, 0) +#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y) +#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y) +#endif + static void applet_back_change (MatePanelApplet *a, MatePanelAppletBackgroundType type, -- cgit v1.2.1