aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-session.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-01-11 04:49:16 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-01-11 04:49:16 +0800
commitae4c1c6ff88b41d38b48039fe2b4624a9807bbf3 (patch)
tree1392cc91b26be7d85a1fd0f93d982123def81867 /mail/mail-session.c
parentb08b93d946c4e8688ad68f1c5c7ccbe0e1ab76e0 (diff)
downloadgsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar
gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar.gz
gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar.bz2
gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar.lz
gsoc2013-evolution-ae4c1c6ff88b41d38b48039fe2b4624a9807bbf3.tar.xz
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/mail-session.c')
-rw-r--r--mail/mail-session.c2
1 files changed, 1 insertions, 1 deletions
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;