mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-21 06:33:18 +00:00
Monotone-Parent: 8c914c816a751fb10558f36e868a2bdcff53b86b
Monotone-Revision: 90509c89f14ff1a8b0d7884244366bd33783ccc1 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2009-09-29T18:17:57 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user