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/clock/clock-location-tile.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'applets/clock') diff --git a/applets/clock/clock-location-tile.c b/applets/clock/clock-location-tile.c index 173a3854..73c9ca87 100644 --- a/applets/clock/clock-location-tile.c +++ b/applets/clock/clock-location-tile.c @@ -17,6 +17,11 @@ #include "clock-marshallers.h" #include "set-timezone.h" +#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 + G_DEFINE_TYPE (ClockLocationTile, clock_location_tile, GTK_TYPE_ALIGNMENT) enum { -- cgit v1.2.1