updated to Xcode 9, using current KeePassKit for better custom icon support

This commit is contained in:
michael starke
2017-09-22 11:45:30 +02:00
parent 6a93056592
commit 213addaedb
6 changed files with 28 additions and 15 deletions

View File

@@ -895,10 +895,10 @@ NSString *const MPDocumentGroupKey = @"MPDocumentGrou
- (void)_emptyTrash {
for(KPKEntry *entry in [self.trash childEntries]) {
[[self undoManager] removeAllActionsWithTarget:entry];
[self.undoManager removeAllActionsWithTarget:entry];
}
for(KPKGroup *group in [self.trash childGroups]) {
[[self undoManager] removeAllActionsWithTarget:group];
[self.undoManager removeAllActionsWithTarget:group];
}
[self.trash clear];
}