summaryrefslogtreecommitdiff
path: root/libcaja-private/caja-keep-last-vertical-box.c
diff options
context:
space:
mode:
authorWolfgang Ulbrich <[email protected]>2016-01-18 15:41:50 +0100
committerWolfgang Ulbrich <[email protected]>2016-01-18 15:41:50 +0100
commitcf39567d3b05b69383c252812c5adf26382c866a (patch)
tree2ce1db2b6888f3dc8cdba6818233afcae493e7de /libcaja-private/caja-keep-last-vertical-box.c
parent0edcf869c2f6b28a5bd0ee6e612229db8c9f2d67 (diff)
downloadcaja-cf39567d3b05b69383c252812c5adf26382c866a.tar.bz2
caja-cf39567d3b05b69383c252812c5adf26382c866a.tar.xz
GTK3: fix deprecated GTK_TYPE_{H/V}BOX usage
Diffstat (limited to 'libcaja-private/caja-keep-last-vertical-box.c')
-rw-r--r--libcaja-private/caja-keep-last-vertical-box.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libcaja-private/caja-keep-last-vertical-box.c b/libcaja-private/caja-keep-last-vertical-box.c
index 212fcc93..40260a09 100644
--- a/libcaja-private/caja-keep-last-vertical-box.c
+++ b/libcaja-private/caja-keep-last-vertical-box.c
@@ -31,7 +31,11 @@ static void caja_keep_last_vertical_box_init (CajaKeepLastVerticalBox
static void caja_keep_last_vertical_box_size_allocate (GtkWidget *widget,
GtkAllocation *allocation);
+#if GTK_CHECK_VERSION (3, 0, 0)
+G_DEFINE_TYPE (CajaKeepLastVerticalBox, caja_keep_last_vertical_box, GTK_TYPE_BOX)
+#else
G_DEFINE_TYPE (CajaKeepLastVerticalBox, caja_keep_last_vertical_box, GTK_TYPE_VBOX)
+#endif
#define parent_class caja_keep_last_vertical_box_parent_class
/* Standard class initialization function */
@@ -49,6 +53,9 @@ caja_keep_last_vertical_box_class_init (CajaKeepLastVerticalBoxClass *klass)
static void
caja_keep_last_vertical_box_init (CajaKeepLastVerticalBox *box)
{
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gtk_orientable_set_orientation (GTK_ORIENTABLE (box), GTK_ORIENTATION_VERTICAL);
+#endif
}