Update _setObjectValue:... to update items in arrangedObjects when there is a binding

This commit is contained in:
Gregory John Casamento 2024-07-11 12:18:52 -04:00
parent 8da3d0afb7
commit bbbe9d00b4
2 changed files with 1050 additions and 1013 deletions

View file

@ -97,6 +97,7 @@
[self setVersion: 4];
[self exposeBinding: NSValueBinding];
[self exposeBinding: NSEnabledBinding];
[self exposeBinding: NSEditableBinding];
}
}
@ -661,6 +662,10 @@ to YES. */
{
// FIXME
}
else if ([aKey isEqual: NSEditableBinding])
{
// FIXME
}
else
{
[super setValue: anObject forKey: aKey];
@ -678,6 +683,11 @@ to YES. */
// FIXME
return [NSNumber numberWithBool: YES];
}
else if ([aKey isEqual: NSEditableBinding])
{
// FIXME
return [NSNumber numberWithBool: YES];
}
else
{
return [super valueForKey: aKey];

File diff suppressed because it is too large Load diff