Changed outline view to display the root node as a normal node and added a separate Group header

This commit is contained in:
michael starke
2013-06-26 21:32:32 +02:00
parent 17f2155aa4
commit 0df7ed4458
17 changed files with 195 additions and 89 deletions

View File

@@ -10,7 +10,7 @@
@implementation Kdb3Tree (NewTree)
+ (Kdb3Tree *)newTemplateTree {
+ (Kdb3Tree *)templateTree {
Kdb3Tree *tree = [[Kdb3Tree alloc] init];
Kdb3Group *rootGroup = [[Kdb3Group alloc] init];
@@ -49,7 +49,7 @@
[rootGroup release];
return tree;
return [tree autorelease];
}
@end