diff options
Diffstat (limited to 'mate-volume-control/src/gvc-level-bar.h')
-rw-r--r-- | mate-volume-control/src/gvc-level-bar.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mate-volume-control/src/gvc-level-bar.h b/mate-volume-control/src/gvc-level-bar.h index 2873209..844d0f9 100644 --- a/mate-volume-control/src/gvc-level-bar.h +++ b/mate-volume-control/src/gvc-level-bar.h @@ -37,13 +37,21 @@ typedef struct GvcLevelBarPrivate GvcLevelBarPrivate; typedef struct { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBox parent; +#else GtkHBox parent; +#endif GvcLevelBarPrivate *priv; } GvcLevelBar; typedef struct { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBoxClass parent_class; +#else GtkHBoxClass parent_class; +#endif } GvcLevelBarClass; typedef enum |