removed private KeePassKit API usage

This commit is contained in:
michael starke
2017-09-29 11:15:30 +02:00
parent 86ec360965
commit c7d66bb642

View File

@@ -273,7 +273,7 @@ NSString *const _MPOutlinveViewHeaderViewIdentifier = @"HeaderCell";
[view.textField bind:NSValueBinding toObject:item withKeyPath:titleKeyPath options:nil];
NSString *entriesCountKeyPath = [[NSString alloc] initWithFormat:@"%@.%@.%@", NSStringFromSelector(@selector(representedObject)), NSStringFromSelector(@selector(mutableEntries)), @"@count"];
NSString *entriesCountKeyPath = [[NSString alloc] initWithFormat:@"%@.%@.%@", NSStringFromSelector(@selector(representedObject)), KPKEntriesArrayBinding, @"@count"];
[view.textField bind:NSStringFromSelector(@selector(count)) toObject:item withKeyPath:entriesCountKeyPath options:nil];
}