diff options
Diffstat (limited to 'libcaja-private/caja-keep-last-vertical-box.c')
-rw-r--r-- | libcaja-private/caja-keep-last-vertical-box.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libcaja-private/caja-keep-last-vertical-box.c b/libcaja-private/caja-keep-last-vertical-box.c index 40260a09..2304acb4 100644 --- a/libcaja-private/caja-keep-last-vertical-box.c +++ b/libcaja-private/caja-keep-last-vertical-box.c @@ -1,6 +1,6 @@ /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ -/* caja-keep-last-vertical-box.c: Subclass of GtkVBox that clips off +/* caja-keep-last-vertical-box.c: Subclass of GtkBox that clips off items that don't fit, except the last one. Copyright (C) 2000 Eazel, Inc. @@ -31,11 +31,8 @@ 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 */ @@ -53,9 +50,7 @@ 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 } |