summaryrefslogtreecommitdiff
path: root/src/tools/marco-window-demo.c
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-11-25 17:18:24 +0100
committerinfirit <[email protected]>2014-11-25 17:18:24 +0100
commitf1c78bf12b539430e2327b83e64a86649ed2faa9 (patch)
treed841d002675b2e8e0043c08ccdd4407a588fb46d /src/tools/marco-window-demo.c
parentf6b6f2be4d109ecf899ccee2b2fae2f0a2beecbe (diff)
downloadmarco-f1c78bf12b539430e2327b83e64a86649ed2faa9.tar.bz2
marco-f1c78bf12b539430e2327b83e64a86649ed2faa9.tar.xz
Gtk3: Silence the GtkVBox and GtkHBox deprecations warnings
Diffstat (limited to 'src/tools/marco-window-demo.c')
-rw-r--r--src/tools/marco-window-demo.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tools/marco-window-demo.c b/src/tools/marco-window-demo.c
index d78d0130..b28e0818 100644
--- a/src/tools/marco-window-demo.c
+++ b/src/tools/marco-window-demo.c
@@ -24,6 +24,11 @@
#include <X11/Xatom.h>
#include <unistd.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
+
static GtkWidget* do_appwindow (void);
static gboolean aspect_on;