aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-folder-search.h
diff options
context:
space:
mode:
author2 <NotZed@Ximian.com>2001-09-13 04:53:29 +0800
committerMichael Zucci <zucchi@src.gnome.org>2001-09-13 04:53:29 +0800
commit7999ad2c0087c2bbddf3e323709901736c13e6f4 (patch)
tree6a314a59af755f7a92a5a19922d1a7a81c9b44da /camel/camel-folder-search.h
parent2241b7b81d11784ea7f7c1380ae265a5be624633 (diff)
downloadgsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.tar
gsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.tar.gz
gsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.tar.bz2
gsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.tar.lz
gsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.tar.xz
gsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.tar.zst
gsoc2013-evolution-7999ad2c0087c2bbddf3e323709901736c13e6f4.zip
Change the 'not' virtual method from an immediate e-sexp function to a
2001-09-12 <NotZed@Ximian.com> * camel-folder-search.h: Change the 'not' virtual method from an immediate e-sexp function to a non-immediate one, which is what it should be. * camel-folder-search.c (search_not): Implement a 'not' function ourselves. If 'not' on a vector value, then not over all items in the summary. (builtings[]): Change the 'not' builtin to be a non-immediate function. svn path=/trunk/; revision=12781
Diffstat (limited to 'camel/camel-folder-search.h')
-rw-r--r--camel/camel-folder-search.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-folder-search.h b/camel/camel-folder-search.h
index e08540e4d9..3455de13d8 100644
--- a/camel/camel-folder-search.h
+++ b/camel/camel-folder-search.h
@@ -57,7 +57,7 @@ struct _CamelFolderSearchClass {
/* general bool/comparison options, usually these wont need to be set, unless it is compiling into another language */
ESExpResult * (*and)(struct _ESExp *f, int argc, struct _ESExpTerm **argv, CamelFolderSearch *s);
ESExpResult * (*or)(struct _ESExp *f, int argc, struct _ESExpTerm **argv, CamelFolderSearch *s);
- ESExpResult * (*not)(struct _ESExp *f, int argc, struct _ESExpTerm **argv, CamelFolderSearch *s);
+ ESExpResult * (*not)(struct _ESExp *f, int argc, struct _ESExpResult **argv, CamelFolderSearch *s);
ESExpResult * (*lt)(struct _ESExp *f, int argc, struct _ESExpTerm **argv, CamelFolderSearch *s);
ESExpResult * (*gt)(struct _ESExp *f, int argc, struct _ESExpTerm **argv, CamelFolderSearch *s);
ESExpResult * (*eq)(struct _ESExp *f, int argc, struct _ESExpTerm **argv, CamelFolderSearch *s);