From f0450bb4001a9d37025578b7933b552cb07b27f6 Mon Sep 17 00:00:00 2001 From: monsta Date: Fri, 15 Jan 2016 13:54:23 +0300 Subject: libslab: use GtkBox instead of GtkVBox in both GTK+ builds and fix deprecated usage of GtkHBox and GtkVBox in GTK+3 build NOTE: this commit changes the public interface of libslab in both GTK+ builds (due to transition of classes' parents and/or members from GtkVBox to GtkBox) --- libslab/slab-section.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libslab/slab-section.h') diff --git a/libslab/slab-section.h b/libslab/slab-section.h index a6f9c1d7..45868818 100644 --- a/libslab/slab-section.h +++ b/libslab/slab-section.h @@ -47,7 +47,7 @@ typedef enum typedef struct { - GtkVBox parent_vbox; + GtkBox parent_vbox; GtkWidget *title; GtkWidget *contents; @@ -59,7 +59,7 @@ typedef struct typedef struct { - GtkVBoxClass parent_class; + GtkBoxClass parent_class; } SlabSectionClass; GType slab_section_get_type (void); -- cgit v1.2.1