diff options
author | stuconnolly <stuart02@gmail.com> | 2010-12-11 21:48:37 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-12-11 21:48:37 +0000 |
commit | 66f0041a06b8710cd3ed3b5ff2c8cbb54004efba (patch) | |
tree | fd8e2c8099f54f0bc30c151f6ca3cc22f7f03aaa /Source/SPTreeNode.h | |
parent | 96475c12f6da064eadf2728c116f2ca88b0c4ec7 (diff) | |
download | sequelpro-66f0041a06b8710cd3ed3b5ff2c8cbb54004efba.tar.gz sequelpro-66f0041a06b8710cd3ed3b5ff2c8cbb54004efba.tar.bz2 sequelpro-66f0041a06b8710cd3ed3b5ff2c8cbb54004efba.zip |
Tidy up.
Diffstat (limited to 'Source/SPTreeNode.h')
-rw-r--r-- | Source/SPTreeNode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/SPTreeNode.h b/Source/SPTreeNode.h index f93157ea..62682af8 100644 --- a/Source/SPTreeNode.h +++ b/Source/SPTreeNode.h @@ -42,14 +42,14 @@ - (void)removeObjectFromChildren:(id)object; -- (NSArray *)descendants; -- (NSArray *)allChildLeafs; -- (NSArray *)groupChildren; +- (NSMutableArray *)descendants; +- (NSMutableArray *)childLeafs; +- (NSMutableArray *)allChildLeafs; +- (NSMutableArray *)groupChildren; - (SPTreeNode *)parentFromArray:(NSArray *)array; - (BOOL)isDescendantOfOrOneOfNodes:(NSArray *)nodes; -- (BOOL)isDescendantOfNodes:(NSArray *)nodes; - (NSDictionary *)dictionaryRepresentation; |