diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-01-11 04:49:16 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-01-11 04:49:16 +0800 |
commit | ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3 (patch) | |
tree | 1392cc91b26be7d85a1fd0f93d982123def81867 /mail | |
parent | b08b93d946c4e8688ad68f1c5c7ccbe0e1ab76e0 (diff) | |
download | gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar.gz gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar.zst gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.zip |
notify-type is a int, not a bool. Duh.
2003-01-10 Jeffrey Stedfast <fejj@ximian.com>
* mail-session.c (main_get_filter_driver): notify-type is a int,
not a bool. Duh.
svn path=/trunk/; revision=19411
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/mail-session.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 1e0a3f46dd..e80c32700d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,5 +1,10 @@ 2003-01-10 Jeffrey Stedfast <fejj@ximian.com> + * mail-session.c (main_get_filter_driver): notify-type is a int, + not a bool. Duh. + +2003-01-10 Jeffrey Stedfast <fejj@ximian.com> + * component-factory.c (factory): Updated for function rename. * mail-config-factory.c (mail_config_control_factory_cb): diff --git a/mail/mail-session.c b/mail/mail-session.c index 05375d992f..8bc1f89ef3 100644 --- a/mail/mail-session.c +++ b/mail/mail-session.c @@ -796,7 +796,7 @@ main_get_filter_driver (CamelSession *session, const char *type, CamelException /* FIXME: we need a way to distinguish between filtering new mail and re-filtering a folder because both use the "incoming" filter type */ - notify = gconf_client_get_bool (gconf, "/apps/evolution/mail/notify/type", NULL); + notify = gconf_client_get_int (gconf, "/apps/evolution/mail/notify/type", NULL); if (notify != MAIL_CONFIG_NOTIFY_NOT && !strcmp (type, "incoming")) { char *filename; |