diff options
Diffstat (limited to 'src/caja-emblem-sidebar.h')
-rw-r--r-- | src/caja-emblem-sidebar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/caja-emblem-sidebar.h b/src/caja-emblem-sidebar.h index 19238a26..6435ef53 100644 --- a/src/caja-emblem-sidebar.h +++ b/src/caja-emblem-sidebar.h @@ -47,13 +47,21 @@ typedef struct CajaEmblemSidebarDetails CajaEmblemSidebarDetails; typedef struct { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBox parent_slot; +#else GtkVBox parent_slot; +#endif CajaEmblemSidebarDetails *details; } CajaEmblemSidebar; typedef struct { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBoxClass parent_slot; +#else GtkVBoxClass parent_slot; +#endif } CajaEmblemSidebarClass; |