Monotone-Parent: 56f1fa4190879117f1a79ceb54d70f4fa769ce40

Monotone-Revision: 30df56fed6201e5630b76375285bd214a212211a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-10-19T13:58:22
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-10-19 13:58:22 +00:00
parent e853d51f06
commit 631a72b223
3 changed files with 29 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-10-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreDraftsMessage.m (-getPrDisplayTo:inMemCtx:)
(-getPrDisplayBcc:inMemCtx:): new getters.
2011-10-18 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/generic.js (log): fixed an issue with

View File

@ -532,6 +532,16 @@ e)
: [super getPrReceivedByEmailAddress: data inMemCtx: memCtx]);
}
- (int) getPrDisplayTo: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
return ([sogoObject isKindOfClass: SOGoDraftObjectK]
? [self _getAddressHeader: data
addressKey: @"to"
inMemCtx: memCtx]
: [super getPrDisplayTo: data inMemCtx: memCtx]);
}
- (int) getPrDisplayCc: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
@ -542,6 +552,16 @@ e)
: [super getPrDisplayCc: data inMemCtx: memCtx]);
}
- (int) getPrDisplayBcc: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx
{
return ([sogoObject isKindOfClass: SOGoDraftObjectK]
? [self _getAddressHeader: data
addressKey: @"cc"
inMemCtx: memCtx]
: [super getPrDisplayBcc: data inMemCtx: memCtx]);
}
- (NSArray *) attachmentKeysMatchingQualifier: (EOQualifier *) qualifier
andSortOrderings: (NSArray *) sortOrderings
{

View File

@ -63,8 +63,12 @@
inMemCtx: (TALLOC_CTX *) memCtx;
- (int) getPrSenderEmailAddress: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx;
- (int) getPrDisplayTo: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx;
- (int) getPrDisplayCc: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx;
- (int) getPrDisplayBcc: (void **) data
inMemCtx: (TALLOC_CTX *) memCtx;
@end