Monotone-Parent: 2d74e4a1d7a6712cf530cd008210def6d2ee0ecc

Monotone-Revision: e046e450fc30a21b1550b89a91fb49c2676d0457

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-02-02T22:07:50
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2010-02-02 22:07:50 +00:00
parent 6deb913777
commit 42c2c84eed
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2010-02-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailBodyPart.m (-imap4URL): we assign our
"imap4URL" ivar so that it can be access directly in order
methods.
* Tests/Integration/test-davacl.py
(DAVCalendarAclTest._testEventDAVAcl): test
current-user-privilege-set on tasks too.

View File

@ -138,7 +138,13 @@ static BOOL debugOn = NO;
- (NSURL *) imap4URL
{
/* reuse URL of message */
return [[self mailObject] imap4URL];
if (!imap4URL)
{
imap4URL = [[self mailObject] imap4URL];
[imap4URL retain];
}
return imap4URL;
}
/* part info */