aboutsummaryrefslogtreecommitdiffstats
path: root/mail/e-mail-config-identity-page.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2012-06-18 21:34:33 +0800
committerMilan Crha <mcrha@redhat.com>2012-06-18 21:35:44 +0800
commit6c05b09be16ac8eceb17653c3c26c0c6f963ef10 (patch)
tree5bb22771cf05419f851373ee43b1ad39a0dcfeaa /mail/e-mail-config-identity-page.c
parente045e6f12324e1063a87488ac298fd23affea581 (diff)
downloadgsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.tar
gsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.tar.gz
gsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.tar.bz2
gsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.tar.lz
gsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.tar.xz
gsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.tar.zst
gsoc2013-evolution-6c05b09be16ac8eceb17653c3c26c0c6f963ef10.zip
Do not call g_object_notify() when property didn't change
Diffstat (limited to 'mail/e-mail-config-identity-page.c')
-rw-r--r--mail/e-mail-config-identity-page.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/mail/e-mail-config-identity-page.c b/mail/e-mail-config-identity-page.c
index b42f0dd49f..055d449d4b 100644
--- a/mail/e-mail-config-identity-page.c
+++ b/mail/e-mail-config-identity-page.c
@@ -692,6 +692,9 @@ e_mail_config_identity_page_set_show_account_info (EMailConfigIdentityPage *page
{
g_return_if_fail (E_IS_MAIL_CONFIG_IDENTITY_PAGE (page));
+ if ((page->priv->show_account_info ? 1 : 0) == (show_account_info ? 1 : 0))
+ return;
+
page->priv->show_account_info = show_account_info;
g_object_notify (G_OBJECT (page), "show-account-info");
@@ -711,6 +714,9 @@ e_mail_config_identity_page_set_show_instructions (EMailConfigIdentityPage *page
{
g_return_if_fail (E_IS_MAIL_CONFIG_IDENTITY_PAGE (page));
+ if ((page->priv->show_instructions ? 1 : 0) == (show_instructions ? 1 : 0))
+ return;
+
page->priv->show_instructions = show_instructions;
g_object_notify (G_OBJECT (page), "show-instructions");
@@ -730,6 +736,9 @@ e_mail_config_identity_page_set_show_signatures (EMailConfigIdentityPage *page,
{
g_return_if_fail (E_IS_MAIL_CONFIG_IDENTITY_PAGE (page));
+ if ((page->priv->show_signatures ? 1 : 0) == (show_signatures ? 1 : 0))
+ return;
+
page->priv->show_signatures = show_signatures;
g_object_notify (G_OBJECT (page), "show-signatures");