Load mod.html into the right pane when clicked. Refactoring.

This commit is contained in:
Paul Chote
2010-11-16 18:45:46 +13:00
parent de7668e8ff
commit ed8203c896
10 changed files with 358 additions and 110 deletions

View File

@@ -68,6 +68,22 @@
[children addObject:child];
}
- (BOOL)shouldSelect
{
return [object shouldSelect];
}
- (NSURL *)url
{
if (object == nil)
{
NSLog(@"object is nil");
return nil;
}
return [object pageURL];
}
- (void) dealloc
{
[title release]; title = nil;