aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPSearchExpression.h
diff options
context:
space:
mode:
authorGravatar pfennema <paul@bryce.demon.nl>2013-12-08 10:33:17 +0100
committerGravatar pfennema <paul@bryce.demon.nl>2013-12-08 10:33:17 +0100
commit5d76e5f9a175e611ea7ef922619012381decf7fc (patch)
tree55a1a23f665774abb3af8f4e4acde381bb8c5a13 /src/objc/imap/MCOIMAPSearchExpression.h
parent461a401af5403b66f4b5094340fe8f00b29c60e5 (diff)
Changed SearchKindCC and SearchKindBCC to SearchKindCc and SearchKindBcc and related code as well
Diffstat (limited to 'src/objc/imap/MCOIMAPSearchExpression.h')
-rw-r--r--src/objc/imap/MCOIMAPSearchExpression.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/objc/imap/MCOIMAPSearchExpression.h b/src/objc/imap/MCOIMAPSearchExpression.h
index 207145d0..a52936de 100644
--- a/src/objc/imap/MCOIMAPSearchExpression.h
+++ b/src/objc/imap/MCOIMAPSearchExpression.h
@@ -59,18 +59,18 @@
Example:
- MCOIMAPSearchExpression * expr = [MCOIMAPSearchExpression searchCC:@"ngan@etpan.org"]
+ MCOIMAPSearchExpression * expr = [MCOIMAPSearchExpression searchCc:@"ngan@etpan.org"]
**/
-+ (MCOIMAPSearchExpression *) searchCC:(NSString *)value;
++ (MCOIMAPSearchExpression *) searchCc:(NSString *)value;
/**
Creates a search expression that matches on the bcc field of an email. Useful to check whether the mail is addressed to the receiver as bcc.
Example:
- MCOIMAPSearchExpression * expr = [MCOIMAPSearchExpression searchBCC:@"ngan@etpan.org"]
+ MCOIMAPSearchExpression * expr = [MCOIMAPSearchExpression searchBcc:@"ngan@etpan.org"]
**/
-+ (MCOIMAPSearchExpression *) searchBCC:(NSString *)value;
++ (MCOIMAPSearchExpression *) searchBcc:(NSString *)value;
/*
Creates a search expression that matches the subject of an email.