mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-22 18:11:06 +00:00
Update _setObjectValue:... to update items in arrangedObjects when there is a binding
This commit is contained in:
parent
8da3d0afb7
commit
bbbe9d00b4
2 changed files with 1050 additions and 1013 deletions
|
@ -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];
|
||||
|
|
2053
Source/NSTableView.m
2053
Source/NSTableView.m
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue