Monotone-Parent: a57f8037facf851d7da8a62c8e874c9555c29c1d

Monotone-Revision: 597916796af3e3138b8cf350cf98b19edf9d16ac

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-03-07T21:21:03
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-03-07 21:21:03 +00:00
parent 21a30fe8cd
commit 25b8bcb413
2 changed files with 9 additions and 10 deletions

View File

@@ -112,13 +112,7 @@ static NGCardsSaxHandler *sax = nil;
+ (id) groupWithTag: (NSString *) aTag
{
id newGroup;
newGroup = [self new];
[newGroup autorelease];
[newGroup setTag: aTag];
return newGroup;
return [self elementWithTag: aTag];
}
+ (id) groupWithTag: (NSString *) aTag
@@ -126,9 +120,7 @@ static NGCardsSaxHandler *sax = nil;
{
id newGroup;
newGroup = [self new];
[newGroup autorelease];
[newGroup setTag: aTag];
newGroup = [self elementWithTag: aTag];
[newGroup addChildren: someChildren];
return newGroup;

View File

@@ -1,3 +1,10 @@
2007-03-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* CardGroup.m ([CardGroup +groupWithTag:aTag]): simply invoke
[self elementWithTag:].
([CardGroup +groupWithTag:aTagchildren:someChildren]): same as
above.
2007-03-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* iCalEntityObject.h (enum): added an enum with iCalAccessPublic,