diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-01-17 21:45:22 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-01-17 21:45:22 +0100 |
commit | 57c2e8090698e8d05beec0c53e3a116fd8b88862 (patch) | |
tree | 51b24fec5c03202d7a16987c248d42f7f4c956d9 /src/caja-image-properties-page.h | |
parent | 312f33c5b54c735d15e78c9b96672b8b555f4834 (diff) | |
download | caja-57c2e8090698e8d05beec0c53e3a116fd8b88862.tar.bz2 caja-57c2e8090698e8d05beec0c53e3a116fd8b88862.tar.xz |
GTK3: more deprecated GtkVBox/GtkHBox fixes
Diffstat (limited to 'src/caja-image-properties-page.h')
-rw-r--r-- | src/caja-image-properties-page.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/caja-image-properties-page.h b/src/caja-image-properties-page.h index 70cde795..6e07bab8 100644 --- a/src/caja-image-properties-page.h +++ b/src/caja-image-properties-page.h @@ -42,13 +42,21 @@ typedef struct CajaImagePropertiesPageDetails CajaImagePropertiesPageDetails; typedef struct { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBox parent; +#else GtkVBox parent; +#endif CajaImagePropertiesPageDetails *details; } CajaImagePropertiesPage; typedef struct { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBoxClass parent; +#else GtkVBoxClass parent; +#endif } CajaImagePropertiesPageClass; GType caja_image_properties_page_get_type (void); |