-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
Date: September 2002 | ||
Author: Gregory Casamento <[email protected]> | ||
Date: July 2024 | ||
Note: Added support for 10.6+ delegate methods. | ||
Note: Added support for 10.6+ delegate methods. Added bindings support | ||
|
||
This file is part of the GNUstep GUI Library. | ||
|
||
|
@@ -3545,9 +3545,10 @@ - (void) _performLoadOfColumn: (NSInteger)column | |
{ | ||
BOOL leaf = YES; | ||
id val = nil; | ||
NSNumber *leafBool = [child valueForKeyPath: leafKeyPath]; | ||
NSNumber *leafBool = nil; // [child valueForKeyPath: leafKeyPath]; | ||
|
||
child = [children objectAtIndex: i]; | ||
leafBool = [child valueForKeyPath: leafKeyPath]; | ||
leaf = [leafBool boolValue]; | ||
|
||
// If a content values binding is present, it uses that key path, | ||
|