Fixed memory leak in MPDatabaseDocument

Added more Icons
This commit is contained in:
Michael Starke
2013-02-17 19:39:15 +01:00
parent f20e3d6e1e
commit 50931ca327
14 changed files with 50 additions and 6 deletions

View File

@@ -83,6 +83,14 @@ NSString *const MPDidLoadDataBaseNotification = @"DidLoadDataBaseNotification";
return self;
}
- (void)dealloc
{
self.tree = nil;
self.file = nil;
self.password = nil;
[super dealloc];
}
- (KdbGroup *)root {
return [self.tree root];
}