From 9b77c3788f4ef98229d470c7402f09fbce28d9dc Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 21 Oct 2008 16:20:07 +0000 Subject: [PATCH] Monotone-Parent: 2dcd3767ec243afcd8e444a801259ca2507bd02e Monotone-Revision: 15b348711217f6686deaa8f88ae89e58a11f436c Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-10-21T16:20:07 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ UI/Contacts/UIxContactFoldersView.m | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 13071ad0a..76b94c163 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-10-21 Wolfgang Sourdeau + + * UI/Contacts/UIxContactFoldersView.m ([UIxContactFoldersView + -contactSearchAction]): fixed typing of "contacts", which actually + is an NSArray. + 2008-10-17 Francis Lachapelle * UI/Common/UIxPageFrame.m ([NSString userLanguage]): returns the diff --git a/UI/Contacts/UIxContactFoldersView.m b/UI/Contacts/UIxContactFoldersView.m index 54128163d..1f0c9f810 100644 --- a/UI/Contacts/UIxContactFoldersView.m +++ b/UI/Contacts/UIxContactFoldersView.m @@ -141,7 +141,7 @@ withSearchOn: (NSString *) contact return email; } -- (NSDictionary *) _responseForResults: (NSArray *) results +- (NSArray *) _responseForResults: (NSArray *) results { NSEnumerator *contacts; NSString *email, *infoKey, *info; @@ -255,7 +255,8 @@ withSearchOn: (NSString *) contact - (id ) contactSearchAction { - NSDictionary *contacts, *data; + NSDictionary *data; + NSArray *contacts; NSString *searchText; id result; LDAPUserManager *um;