mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-29 20:31:22 +00:00
Add implementations for child methods
This commit is contained in:
parent
bb67c014c9
commit
3781be16e2
1 changed files with 2 additions and 8 deletions
|
@ -164,12 +164,6 @@
|
|||
return [temp sortedArrayUsingDescriptors: _sortDescriptors];
|
||||
}
|
||||
|
||||
- (NSArray*) arrangeObjects: (NSArray*)obj
|
||||
{
|
||||
NSArray *temp = obj;
|
||||
return [temp sortedArrayUsingDescriptors: _sort_descriptors];
|
||||
}
|
||||
|
||||
- (id) arrangedObjects
|
||||
{
|
||||
if (_arranged_objects == nil)
|
||||
|
@ -208,7 +202,7 @@
|
|||
|
||||
- (NSArray*) sortDescriptors
|
||||
{
|
||||
return _sort_descriptors;
|
||||
return _sortDescriptors;
|
||||
}
|
||||
|
||||
- (NSString*) childrenKeyPath
|
||||
|
@ -336,7 +330,7 @@
|
|||
|
||||
- (void) setSortDescriptors: (NSArray*)descriptors
|
||||
{
|
||||
ASSIGN(_sort_descriptors, descriptors);
|
||||
ASSIGN(_sortDescriptors, descriptors);
|
||||
}
|
||||
|
||||
- (NSString*) childrenKeyPathForNode: (NSTreeNode*)node
|
||||
|
|
Loading…
Reference in a new issue