summaryrefslogtreecommitdiff
path: root/mateweather
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2015-05-23 16:35:42 +0200
committerraveit65 <[email protected]>2015-05-23 16:35:42 +0200
commitc5c9cb571268ca96f718a8c68c41c9e5254b6d77 (patch)
tree00ec9b358f37c5ef86983bb5f4cce268070fd1eb /mateweather
parent06cb9cedd782bd59066f8a76307aeed8bc598d33 (diff)
downloadmate-applets-c5c9cb571268ca96f718a8c68c41c9e5254b6d77.tar.bz2
mate-applets-c5c9cb571268ca96f718a8c68c41c9e5254b6d77.tar.xz
GTK3: fix panel orientation from weather applet
Diffstat (limited to 'mateweather')
-rw-r--r--mateweather/mateweather-applet.c4
1 files 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,