Monotone-Parent: 8c914c816a751fb10558f36e868a2bdcff53b86b

Monotone-Revision: 90509c89f14ff1a8b0d7884244366bd33783ccc1

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-09-29T18:17:57
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-09-29 18:17:57 +00:00
parent bb0c7a875d
commit 0aaaf59814
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,9 @@
2009-09-29 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoObject.m (SOGoSelectorForPropertyGetter)
(SOGoSelectorForPropertySetter): fixed a case where propSel should
be initialized to NULL.
* SoObjects/SOGo/SOGoGroup.m (-members): we now cache the array of
members as an ivar.
(-hasMemberWithUID): new self-explicit method.

View File

@ -96,6 +96,8 @@ SEL SOGoSelectorForPropertyGetter (NSString *property)
[getterMap setObject: [NSValue valueWithPointer: propSel]
forKey: property];
}
else
propSel = NULL;
}
return propSel;
@ -124,6 +126,8 @@ SEL SOGoSelectorForPropertySetter (NSString *property)
[setterMap setObject: [NSValue valueWithPointer: propSel]
forKey: property];
}
else
propSel = NULL;
}
return propSel;