Fixed typo

This commit is contained in:
michael starke
2014-09-01 19:05:18 +02:00
parent 05de5f0e9a
commit 6359772120

View File

@@ -67,7 +67,7 @@ NSString *const MPEntryTableModfiedColumnIdentifier = @"MPEntryTableModfiedColum
NSString *const _MPTableImageCellView = @"ImageCell";
NSString *const _MPTableStringCellView = @"StringCell";
NSString *const _MPTAbleSecurCellView = @"PasswordCell";
NSString *const _MPTableSecurCellView = @"PasswordCell";
@interface MPEntryViewController () {
MPEntryContextMenuDelegate *_menuDelegate;
@@ -278,7 +278,7 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
}
}
else if(isPasswordColum) {
view = [tableView makeViewWithIdentifier:_MPTAbleSecurCellView owner:self];
view = [tableView makeViewWithIdentifier:_MPTableSecurCellView owner:self];
NSDictionary *options = @{ NSValueTransformerBindingOption : [NSValueTransformer valueTransformerForName:MPStringLengthValueTransformerName] };
[[view textField] bind:NSValueBinding toObject:entry withKeyPath:NSStringFromSelector(@selector(password)) options:options];
}
@@ -731,6 +731,9 @@ NSString *const _MPTAbleSecurCellView = @"PasswordCell";
break;
}
}
#pragma mark periodic UI Update
- (void)_updateExpirationDisplay {
/* items are all entries */
[[self.entryArrayController arrangedObjects] enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {