diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-03-24 04:26:52 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-03-24 04:26:52 +0800 |
commit | 991dd5c662348b9d4ff7bc41a3788a8ddd55991e (patch) | |
tree | 4832e11ffce05532b9be3aa32723329ec6d597e3 /mail | |
parent | 04693dc8f8807a51a55e8f54f2b306c626b958ea (diff) | |
download | gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.tar gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.tar.gz gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.tar.bz2 gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.tar.lz gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.tar.xz gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.tar.zst gsoc2013-evolution-991dd5c662348b9d4ff7bc41a3788a8ddd55991e.zip |
Fixed the key to fetch the value from the correct location. It's
2004-03-23 Jeffrey Stedfast <fejj@ximian.com>
* em-mailer-prefs.c (em_mailer_prefs_construct): Fixed the key to
fetch the value from the correct location. It's
junk/check_incoming, not junk/sa/check_incoming. Fixes bug #55903.
svn path=/trunk/; revision=25165
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/em-mailer-prefs.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index e1afd0d0e7..982faecf06 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,9 @@ 2004-03-23 Jeffrey Stedfast <fejj@ximian.com> + * em-mailer-prefs.c (em_mailer_prefs_construct): Fixed the key to + fetch the value from the correct location. It's + junk/check_incoming, not junk/sa/check_incoming. Fixes bug #55903. + * em-folder-tree-model.c (em_folder_tree_model_set_expanded): Fixed some logic bugs. diff --git a/mail/em-mailer-prefs.c b/mail/em-mailer-prefs.c index 5f2a8c4811..b2743c7740 100644 --- a/mail/em-mailer-prefs.c +++ b/mail/em-mailer-prefs.c @@ -788,9 +788,9 @@ em_mailer_prefs_construct (EMMailerPrefs *prefs) /* Junk prefs */ prefs->check_incoming = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkCheckIncomingMail")); toggle_button_init (prefs->check_incoming, prefs->gconf, - "/apps/evolution/mail/junk/sa/check_incoming", + "/apps/evolution/mail/junk/check_incoming", FALSE, G_CALLBACK (settings_changed), prefs); - + prefs->sa_local_tests_only = GTK_TOGGLE_BUTTON (glade_xml_get_widget (gui, "chkSALocalTestsOnly")); toggle_button_init (prefs->sa_local_tests_only, prefs->gconf, "/apps/evolution/mail/junk/sa/local_only", |