diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-02 09:12:44 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-02 09:12:44 +0800 |
commit | 8962868ff902e58456c545478e62796029d1fe5c (patch) | |
tree | d43efa77beba51f716a259a3538dd55a38711923 /plugins/mail-notification | |
parent | 6b2a55be48922c9fe5c94d654a4d463f23a428f2 (diff) | |
download | gsoc2013-evolution-8962868ff902e58456c545478e62796029d1fe5c.tar.gz gsoc2013-evolution-8962868ff902e58456c545478e62796029d1fe5c.tar.zst gsoc2013-evolution-8962868ff902e58456c545478e62796029d1fe5c.zip |
Relax the EBinding API to reduce GObject casting.
Also make it more fault-tolerant by warning about non-existent
property names instead of just crashing.
Diffstat (limited to 'plugins/mail-notification')
-rw-r--r-- | plugins/mail-notification/mail-notification.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/mail-notification/mail-notification.c b/plugins/mail-notification/mail-notification.c index f6272ba873..ccdbeab7e0 100644 --- a/plugins/mail-notification/mail-notification.c +++ b/plugins/mail-notification/mail-notification.c @@ -525,8 +525,8 @@ get_config_widget_status (void) gtk_widget_show (widget); e_binding_new ( - G_OBJECT (master), "active", - G_OBJECT (widget), "sensitive"); + master, "active", + widget, "sensitive"); container = widget; @@ -743,8 +743,8 @@ get_config_widget_sound (void) gtk_widget_show (widget); e_binding_new ( - G_OBJECT (master), "active", - G_OBJECT (widget), "sensitive"); + master, "active", + widget, "sensitive"); container = widget; |