diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-07-01 03:21:59 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-07-01 03:21:59 +0800 |
commit | 0e41bd2003b365a6ccb4618ec3d93575e4c367dd (patch) | |
tree | b964b2d30aff6d97348a16ba9ed96c1eb7bc77c0 | |
parent | 953c33faba56e7c5115ef2ca81029210f70cca9a (diff) | |
download | gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.gz gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.tar.zst gsoc2013-evolution-0e41bd2003b365a6ccb4618ec3d93575e4c367dd.zip |
** Fix for bug #448970
svn path=/trunk/; revision=33732
-rw-r--r-- | plugins/default-mailer/ChangeLog | 6 | ||||
-rw-r--r-- | plugins/default-mailer/default-mailer.c | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/plugins/default-mailer/ChangeLog b/plugins/default-mailer/ChangeLog index 4c98aba9d0..db55852ce4 100644 --- a/plugins/default-mailer/ChangeLog +++ b/plugins/default-mailer/ChangeLog @@ -1,3 +1,9 @@ +2007-07-01 Srinivasa Ragavan <sragavan@novell.com> + + ** Fix for bug #448970 + + * default-mailer.c: (org_gnome_default_mailer_check_default): + 2007-06-03 Srinivasa Ragavan <sragavan@novell.com> ** Fix for version removal from Installed files from Gilles Dartiguelongue diff --git a/plugins/default-mailer/default-mailer.c b/plugins/default-mailer/default-mailer.c index a8a1b8d037..b75673d8f6 100644 --- a/plugins/default-mailer/default-mailer.c +++ b/plugins/default-mailer/default-mailer.c @@ -76,9 +76,10 @@ org_gnome_default_mailer_check_default (EPlugin *ep, ESEventTargetUpgrade *targe /* See whether the check default mailer key has already been set */ is_key = gconf_client_get(client, GCONF_KEY_CHECKDEFAULT, NULL); - if(!is_key) + if(!is_key) { gconf_client_set_bool(client, GCONF_KEY_CHECKDEFAULT, TRUE, NULL); - gconf_value_free (is_key); + gconf_value_free (is_key); + } /* Check whether we're supposed to check whether or not we are the default mailer */ if(gconf_client_get_bool(client, GCONF_KEY_CHECKDEFAULT, NULL)) { |