diff options
author | Stefano Karapetsas <[email protected]> | 2013-08-11 18:48:36 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2013-08-11 18:48:36 +0200 |
commit | f3c7002b8ae2ca19e7f264a6862b1e20616654a4 (patch) | |
tree | ff488a3948055e7cc35092cb09c5f7949e37cb5e /polkitgtkmate/polkitlockbutton.h | |
parent | 5115f068a19b25ce061f1f3b1fde329dad921a1f (diff) | |
download | mate-polkit-f3c7002b8ae2ca19e7f264a6862b1e20616654a4.tar.bz2 mate-polkit-f3c7002b8ae2ca19e7f264a6862b1e20616654a4.tar.xz |
Use GtkBox in GTK3 instead of GtkHBox
Diffstat (limited to 'polkitgtkmate/polkitlockbutton.h')
-rw-r--r-- | polkitgtkmate/polkitlockbutton.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/polkitgtkmate/polkitlockbutton.h b/polkitgtkmate/polkitlockbutton.h index 519128b..ce3affe 100644 --- a/polkitgtkmate/polkitlockbutton.h +++ b/polkitgtkmate/polkitlockbutton.h @@ -57,7 +57,11 @@ typedef struct _PolkitLockButtonPrivate PolkitLockButtonPrivate; * should be accessed using the provided API. */ struct _PolkitLockButton { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBox parent; +#else GtkHBox parent; +#endif /*< private >*/ PolkitLockButtonPrivate* priv; @@ -71,7 +75,11 @@ struct _PolkitLockButton { * Class structure for #PolkitLockButton. */ struct _PolkitLockButtonClass { +#if GTK_CHECK_VERSION (3, 0, 0) + GtkBoxClass parent_class; +#else GtkHBoxClass parent_class; +#endif /* Signals */ void (*changed)(PolkitLockButton* button); |