From c5c9cb571268ca96f718a8c68c41c9e5254b6d77 Mon Sep 17 00:00:00 2001
From: raveit65 <chat-to-me@raveit.de>
Date: Sat, 23 May 2015 16:35:42 +0200
Subject: GTK3: fix panel orientation from weather applet

---
 mateweather/mateweather-applet.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mateweather/mateweather-applet.c b/mateweather/mateweather-applet.c
index 4dc26a16..7a404025 100644
--- a/mateweather/mateweather-applet.c
+++ b/mateweather/mateweather-applet.c
@@ -42,8 +42,8 @@
 #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)
+#define gtk_hbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_VERTICAL,Y)
+#define gtk_vbox_new(X,Y) gtk_box_new(GTK_ORIENTATION_HORIZONTAL,Y)
 #endif
 
 static void about_cb (GtkAction      *action,
-- 
cgit v1.2.1