mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-30 04:50:57 +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];
|
return [temp sortedArrayUsingDescriptors: _sortDescriptors];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSArray*) arrangeObjects: (NSArray*)obj
|
|
||||||
{
|
|
||||||
NSArray *temp = obj;
|
|
||||||
return [temp sortedArrayUsingDescriptors: _sort_descriptors];
|
|
||||||
}
|
|
||||||
|
|
||||||
- (id) arrangedObjects
|
- (id) arrangedObjects
|
||||||
{
|
{
|
||||||
if (_arranged_objects == nil)
|
if (_arranged_objects == nil)
|
||||||
|
@ -208,7 +202,7 @@
|
||||||
|
|
||||||
- (NSArray*) sortDescriptors
|
- (NSArray*) sortDescriptors
|
||||||
{
|
{
|
||||||
return _sort_descriptors;
|
return _sortDescriptors;
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) childrenKeyPath
|
- (NSString*) childrenKeyPath
|
||||||
|
@ -336,7 +330,7 @@
|
||||||
|
|
||||||
- (void) setSortDescriptors: (NSArray*)descriptors
|
- (void) setSortDescriptors: (NSArray*)descriptors
|
||||||
{
|
{
|
||||||
ASSIGN(_sort_descriptors, descriptors);
|
ASSIGN(_sortDescriptors, descriptors);
|
||||||
}
|
}
|
||||||
|
|
||||||
- (NSString*) childrenKeyPathForNode: (NSTreeNode*)node
|
- (NSString*) childrenKeyPathForNode: (NSTreeNode*)node
|
||||||
|
|
Loading…
Reference in a new issue