Monotone-Parent: 1f46dbc903f7ca9ba9cc8ce7548e8dcc424e109e

Monotone-Revision: d45b9825eb29bcbb89f32b7326fed4cd3b64ca00

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-08T20:25:59
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-11-08 20:25:59 +00:00
parent bb93bf4f9a
commit 97476404c4
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
2007-11-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/MailerUI/UIxMailListView.m ([UIxMailListView
-hasMessageAttachment]): consider an attachment any content that
has a non-nil disposition.
* SoObjects/SOGo/SOGoParentFolder.m ([SOGoParentFolder
-newFolderWithName:nameandNameInContainer:newNameInContainer]):
fixed method to make use of the parameters instead of the useless

View File

@@ -221,8 +221,7 @@
= [[parts objectsForKey: @"disposition"] objectEnumerator];
while (!hasAttachment
&& (currentDisp = [dispositions nextObject]))
hasAttachment = ([[currentDisp objectForKey: @"type"]
isEqualToString: @"ATTACHMENT"]);
hasAttachment = ([currentDisp objectForKey: @"type"]);
}
return hasAttachment;