Add implementations for child methods

This commit is contained in:
Gregory John Casamento 2023-04-04 09:00:16 -04:00
parent bb67c014c9
commit 3781be16e2

View file

@ -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