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 /mail/e-mail-reader.c | |
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 'mail/e-mail-reader.c')
-rw-r--r-- | mail/e-mail-reader.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index 793763162d..96ed8cf379 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -2061,33 +2061,33 @@ e_mail_reader_init (EMailReader *reader) /* Bind properties. */ e_binding_new_full ( - G_OBJECT (shell_settings), "mail-citation-color", - G_OBJECT (html_display), "citation-color", + shell_settings, "mail-citation-color", + html_display, "citation-color", e_binding_transform_string_to_color, NULL, NULL); e_binding_new ( - G_OBJECT (shell_settings), "mail-image-loading-policy", - G_OBJECT (html_display), "image-loading-policy"); + shell_settings, "mail-image-loading-policy", + html_display, "image-loading-policy"); e_binding_new ( - G_OBJECT (shell_settings), "mail-only-local-photos", - G_OBJECT (html_display), "only-local-photos"); + shell_settings, "mail-only-local-photos", + html_display, "only-local-photos"); e_binding_new ( - G_OBJECT (shell_settings), "mail-show-animated-images", - G_OBJECT (display), "animate"); + shell_settings, "mail-show-animated-images", + display, "animate"); e_binding_new ( - G_OBJECT (shell_settings), "mail-show-sender-photo", - G_OBJECT (html_display), "show-sender-photo"); + shell_settings, "mail-show-sender-photo", + html_display, "show-sender-photo"); action_name = "mail-caret-mode"; action = e_mail_reader_get_action (reader, action_name); e_mutual_binding_new ( - G_OBJECT (action), "active", - G_OBJECT (display), "caret-mode"); + action, "active", + display, "caret-mode"); /* Connect signals. */ |