mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-28 08:19:28 +00:00
Monotone-Parent: 2f3e59ca771f0f87a19e27da7ce51726090f893c
Monotone-Revision: 1c6e237a5f05d42b8256e2192f1d6e71423ccd22 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-04-27T22:09:09 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2007-04-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* NGVCard.m ([NGVCard -n]): simplified method by returning the
|
||||
values of the element returned by uniqueChildWithTag:.
|
||||
|
||||
2007-03-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* iCalEntityObject.m ([iCalEntityObject -symbolicAccessClass]):
|
||||
|
||||
@@ -297,15 +297,7 @@
|
||||
|
||||
- (NSArray *) n
|
||||
{
|
||||
NSArray *elements, *n;
|
||||
|
||||
elements = [self childrenWithTag: @"n"];
|
||||
if ([elements count] > 0)
|
||||
n = [[elements objectAtIndex: 0] values];
|
||||
else
|
||||
n = nil;
|
||||
|
||||
return n;
|
||||
return [[self uniqueChildWithTag: @"n"] values];
|
||||
}
|
||||
|
||||
- (void) setOrg: (NSString *) anOrg
|
||||
|
||||
Reference in New Issue
Block a user