diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-27 21:22:52 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-27 21:25:01 +0800 |
commit | d8b3127abda28009b5c9e97b0e5df9699316f968 (patch) | |
tree | dca7a8e929ec0d9b16e0bd80ab756695ce055d0c /filter | |
parent | 2b16aef84141800099f859e72d05e1e6bf8e02dd (diff) | |
download | gsoc2013-evolution-d8b3127abda28009b5c9e97b0e5df9699316f968.tar.gz gsoc2013-evolution-d8b3127abda28009b5c9e97b0e5df9699316f968.tar.zst gsoc2013-evolution-d8b3127abda28009b5c9e97b0e5df9699316f968.zip |
Fix a typo in EFilterPart.
This was breaking searching in strange and mysterious ways.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/e-filter-part.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/e-filter-part.c b/filter/e-filter-part.c index 37e2bf61df..50d6d13ded 100644 --- a/filter/e-filter-part.c +++ b/filter/e-filter-part.c @@ -443,7 +443,7 @@ e_filter_part_find_list (GList *list, for (link = list; link != NULL; link = g_list_next (link)) { EFilterPart *part = link->data; - if (!g_strcmp0 (part->name, name) == 0) + if (g_strcmp0 (part->name, name) == 0) return part; } |