mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 22:42:18 +00:00
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:
@@ -9,10 +9,8 @@
|
||||
#import "MPEntryTableDataSource.h"
|
||||
#import "MPEntryViewController.h"
|
||||
|
||||
#import "Kdb.h"
|
||||
#import "UUID+Pasterboard.h"
|
||||
|
||||
#import "MPConstants.h"
|
||||
#import "KPKEntry.h"
|
||||
#import "NSUUID+KeePassKit.h"
|
||||
|
||||
@interface MPEntryTableDataSource ()
|
||||
|
||||
@@ -27,10 +25,10 @@
|
||||
}
|
||||
|
||||
id item = [self.viewController.entryArrayController arrangedObjects][[rowIndexes firstIndex]];
|
||||
if(![item isKindOfClass:[KdbEntry class]]) {
|
||||
if(![item isKindOfClass:[KPKEntry class]]) {
|
||||
return NO;
|
||||
}
|
||||
KdbEntry *entry = (KdbEntry *)item;
|
||||
KPKEntry *entry = (KPKEntry *)item;
|
||||
[pboard writeObjects:@[entry.uuid]];
|
||||
return YES;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user