Files
MacPass/MacPass/MPKeyfilePathControlDelegate.m
michael starke 5ab229b0e8 Added AI assets
Keyfiles are now usable for opening databases
2013-03-10 16:02:06 +01:00

23 lines
541 B
Objective-C

//
// MPKeyfilePathControlDelegate.m
// MacPass
//
// Created by Michael Starke on 10.03.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPKeyfilePathControlDelegate.h"
@implementation MPKeyfilePathControlDelegate
- (NSDragOperation)pathControl:(NSPathControl *)pathControl validateDrop:(id<NSDraggingInfo>)info {
NSLog(@"%@", [info draggingPasteboard]);
return NSDragOperationNone;
}
- (void)pathControl:(NSPathControl *)pathControl willDisplayOpenPanel:(NSOpenPanel *)openPanel {
}
@end