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 --- charpick/charpick.c | 5 +++++ charpick/properties.c | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'charpick') diff --git a/charpick/charpick.c b/charpick/charpick.c index 4afab222..299df110 100644 --- a/charpick/charpick.c +++ b/charpick/charpick.c @@ -12,6 +12,11 @@ #include #include "charpick.h" +#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 + /* The comment for each char list has the html entity names of the chars */ /* All gunicar codes should end in 0 */ diff --git a/charpick/properties.c b/charpick/properties.c index e732a730..22104235 100644 --- a/charpick/properties.c +++ b/charpick/properties.c @@ -15,6 +15,11 @@ #define CHARPICK_STOCK_EDIT "charpick-stock-edit" +#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 + void register_stock_for_edit (void) { -- cgit v1.2.1