[ADDED] Importing mpsites exports. [RENAMED] keyHashHex -> keyID. [RENAMED] Calculated -> Generated. [FIXED] iOS: Dismiss mail VC when done with it. [FIXED] iOS: Properly hide content tip icons when a content tip is shown while one with an icon is still active. [FIXED] iOS: Settings bundle was using old keys.
31 lines
666 B
Objective-C
31 lines
666 B
Objective-C
//
|
|
// MPElementGeneratedEntity.m
|
|
// MasterPassword
|
|
//
|
|
// Created by Maarten Billemont on 16/01/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import "MPElementGeneratedEntity.h"
|
|
#import "MPAppDelegate_Shared.h"
|
|
|
|
|
|
@implementation MPElementGeneratedEntity
|
|
|
|
@dynamic counter;
|
|
|
|
- (id)content {
|
|
|
|
if (!(self.type & MPElementTypeClassGenerated)) {
|
|
err(@"Corrupt element: %@, type: %d, does not match class: %@", self.name, self.type, [self class]);
|
|
return nil;
|
|
}
|
|
|
|
if (![self.name length])
|
|
return nil;
|
|
|
|
return MPCalculateContent((unsigned)self.type, self.name, [MPAppDelegate get].key, self.counter);
|
|
}
|
|
|
|
@end
|