Monotone-Parent: 2ddf3577ff0d5f52e3f3dda10dce5e8c94f2421b

Monotone-Revision: aca422868e377bcf123be4fcaa0a258238b473a6

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-12-17T20:45:48
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau 2007-12-17 20:45:48 +00:00
parent 21de09a9f0
commit b62a6e9f7f
3 changed files with 22 additions and 18 deletions

View file

@ -1,5 +1,9 @@
2007-12-17 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/MailerUI/UIxMailEditor.m ([UIxMailEditor -attachmentNames]):
initialize "attachmentNames" if it was NOT initialized... I think
this was a typo.
* SoObjects/Mailer/SOGoDraftObject.m ([SOGoDraftObject
-fetchMailForForwarding:sourceMail]): append the signature to
mails forwarded as attachment.

View file

@ -396,11 +396,11 @@ static NSArray *infoKeys = nil;
{
NSArray *a;
if (attachmentNames)
if (!attachmentNames)
{
a = [[self clientObject] fetchAttachmentNames];
a = [a sortedArrayUsingSelector: @selector (compare:)];
attachmentNames = [a copy];
ASSIGN (attachmentNames,
[a sortedArrayUsingSelector: @selector (compare:)]);
}
return attachmentNames;