summaryrefslogtreecommitdiff
path: root/mateweather
diff options
context:
space:
mode:
Diffstat (limited to 'mateweather')
-rw-r--r--mateweather/mateweather-applet.c5
-rw-r--r--mateweather/mateweather-dialog.c5
-rw-r--r--mateweather/mateweather-pref.c5
3 files changed, 15 insertions, 0 deletions
diff --git a/mateweather/mateweather-applet.c b/mateweather/mateweather-applet.c
index 2c0f55c1..484160b5 100644
--- a/mateweather/mateweather-applet.c
+++ b/mateweather/mateweather-applet.c
@@ -50,6 +50,11 @@
#define MAX_CONSECUTIVE_FAULTS (3)
+#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 about_cb (GtkAction *action,
MateWeatherApplet *gw_applet)
{
diff --git a/mateweather/mateweather-dialog.c b/mateweather/mateweather-dialog.c
index af71d319..a50cbec2 100644
--- a/mateweather/mateweather-dialog.c
+++ b/mateweather/mateweather-dialog.c
@@ -27,6 +27,11 @@
#include "mateweather-pref.h"
#include "mateweather-dialog.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
+
struct _MateWeatherDialogPrivate {
GtkWidget* cond_location;
GtkWidget* cond_update;
diff --git a/mateweather/mateweather-pref.c b/mateweather/mateweather-pref.c
index 672aa8e9..51d6947f 100644
--- a/mateweather/mateweather-pref.c
+++ b/mateweather/mateweather-pref.c
@@ -37,6 +37,11 @@
#define NEVER_SENSITIVE "never_sensitive"
+#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
+
struct _MateWeatherPrefPrivate {
GtkWidget* basic_detailed_btn;
GtkWidget* basic_temp_combo;