Started Move to KeePassKit - Project compiles but does NOT work properly

Removed MiniKeePass Categories.
Moved Random streams form MiniKeePass to KeePassKit
Changed MacPass to use KeePassKit
This commit is contained in:
michael starke
2013-09-01 02:16:27 +02:00
parent 319d165141
commit 5e4254b45f
70 changed files with 498 additions and 2521 deletions

View File

@@ -8,8 +8,8 @@
#import "MPDocumentWindowDelegate.h"
#import "MPDocument.h"
#import "Kdb.h"
#import "KdbEntry+Undo.h"
#import "KPKEntry.h"
@implementation MPDocumentWindowDelegate
@@ -55,9 +55,9 @@
BOOL ok = NO;
if(document.selectedGroup) {
[[document undoManager] beginUndoGrouping];
KdbEntry *entry = [document createEntry:document.selectedGroup];
KPKEntry *entry = [document createEntry:document.selectedGroup];
ok = (nil != entry);
entry.urlUndoable = [url absoluteString];
entry.url = [url absoluteString];
[[document undoManager] endUndoGrouping];
[[document undoManager] setActionName:NSLocalizedString(@"IMPORT_URL", @"Imports a dragged URL for a new entry")];
}