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.c | |
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.c')
-rw-r--r-- | polkitgtkmate/polkitlockbutton.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/polkitgtkmate/polkitlockbutton.c b/polkitgtkmate/polkitlockbutton.c index 079a94b..757c34c 100644 --- a/polkitgtkmate/polkitlockbutton.c +++ b/polkitgtkmate/polkitlockbutton.c @@ -209,7 +209,11 @@ static void on_authority_changed(PolkitAuthority* authority, gpointer user_data) static void on_clicked(GtkButton* button, gpointer user_data); +#if GTK_CHECK_VERSION (3, 0, 0) +G_DEFINE_TYPE(PolkitLockButton, polkit_lock_button, GTK_TYPE_BOX); +#else G_DEFINE_TYPE(PolkitLockButton, polkit_lock_button, GTK_TYPE_HBOX); +#endif static void polkit_lock_button_finalize(GObject* object) { |