Monotone-Parent: 634dea34e91fc82d20a96d4ce002cbb9e2939243

Monotone-Revision: 2d2e743a5087ca30371568023cc4df66fe721a9d

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-08-02T21:18:35
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2007-08-02 21:18:35 +00:00
parent e023ee3ea7
commit 74ffeef8fe
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2007-08-02 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Contacts/UIxContactFoldersView.m ([UIxContactFoldersView _responseForResults:]):
has to return only one element.
2007-08-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/MailPartViewers/UIxMailPartViewer.m ([UIxMailPartViewer

View File

@@ -147,7 +147,7 @@
{
contacts = [results objectEnumerator];
contact = [contacts nextObject];
while (contact)
if (contact)
{
responseString = [NSString stringWithFormat: @"%@:%@:%@",
[contact objectForKey: @"c_uid"],
@@ -157,7 +157,7 @@
// [response setHeader: @"text/plain; charset=iso-8859-1"
// forKey: @"Content-Type"];
[response appendContentString: responseString];
contact = [contacts nextObject];
// contact = [contacts nextObject];
}
}
else