diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-03-30 00:50:23 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-03-30 00:50:23 +0800 |
commit | 8a6f447395afc8cd55ae5d0e81632d45a9506f07 (patch) | |
tree | c9a1976b57d89027a4e1fd2739c14eed31701bd1 /mail/em-folder-browser.c | |
parent | d468b8646a70501dc74369636e953a2d30aee3da (diff) | |
download | gsoc2013-evolution-8a6f447395afc8cd55ae5d0e81632d45a9506f07.tar.gz gsoc2013-evolution-8a6f447395afc8cd55ae5d0e81632d45a9506f07.tar.zst gsoc2013-evolution-8a6f447395afc8cd55ae5d0e81632d45a9506f07.zip |
Instead of comparing sstate[0] to '1', compare it against '0' like all the
2004-03-29 Jeffrey Stedfast <fejj@ximian.com>
* em-folder-browser.c (emfb_activate): Instead of comparing
sstate[0] to '1', compare it against '0' like all the other code
does.
svn path=/trunk/; revision=25227
Diffstat (limited to 'mail/em-folder-browser.c')
-rw-r--r-- | mail/em-folder-browser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-folder-browser.c b/mail/em-folder-browser.c index c33d7c50be..1c96fb8a77 100644 --- a/mail/em-folder-browser.c +++ b/mail/em-folder-browser.c @@ -1067,7 +1067,7 @@ emfb_activate(EMFolderView *emfv, BonoboUIComponent *uic, int act) /* ViewThreaded */ if (emfv->folder && (sstate = camel_object_meta_get(emfv->folder, "evolution:thread_list"))) { - state = sstate[0] == '1'; + state = sstate[0] != '0'; g_free(sstate); } else { state = gconf_client_get_bool(gconf, "/apps/evolution/mail/display/thread_list", NULL); |