diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-25 07:11:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-07-25 07:11:31 +0800 |
commit | b9a2c5208442afe5eb01983a8b7b0f015611f77d (patch) | |
tree | 1f89b781cd3179b2e10430d37e00743a46b7fe8c | |
parent | 17fb49b6a7c0b40cfa075e4c9461ac5f907a3303 (diff) | |
download | gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.tar gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.tar.gz gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.tar.bz2 gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.tar.lz gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.tar.xz gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.tar.zst gsoc2013-evolution-b9a2c5208442afe5eb01983a8b7b0f015611f77d.zip |
fixed a typo
svn path=/trunk/; revision=11370
-rw-r--r-- | mail/component-factory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/component-factory.c b/mail/component-factory.c index 6b8d8a4984..4fdb6ed69f 100644 --- a/mail/component-factory.c +++ b/mail/component-factory.c @@ -131,7 +131,7 @@ create_view (EvolutionShellComponent *shell_component, CamelURL *url; url = camel_url_new (physical_uri, NULL); - if (url && !g_strcasecmp (camel_url_get_param (url, "noselect"), "yes")) + if (url && g_strcasecmp (camel_url_get_param (url, "noselect"), "yes")) control = create_noselect_control (); else control = folder_browser_factory_new_control (physical_uri, |