if (debugOn)
[self logWithFormat:@"set value %@ component %@", _value, _component];
+ // we do not check the return value, because a set is allowed to fail
+ // (in SOPE ;-) [if there is no accessor, a backsync is just ignored]
+#if 1
_setValue(self, _value, _component);
+#else
+ if (!_setValue(self, _value, _component)) {
+ [self logWithFormat:@"could not set value %@ component %@",
+ _value, _component];
+ }
+#endif
}
- (id)valueInComponent:(WOComponent *)_component {
#if DEBUG
+2007-09-27 Helge Hess <helge.hess@opengroupware.org>
+
+ * Associations/WOKeyPathAssociation.m: clarified some code (v4.7.16)
+
2007-09-14 Helge Hess <helge.hess@opengroupware.org>
* SoObjects/SoHTTPAuthenticator.m, SoCookieAuthenticator.m: be more