Files
MacPass/MacPass/MPKeyfilePathControlDelegate.m
Michael Starke ccd9c9cfa9 Fixed issue that did not set the correct document version in MPDocument
Reverted undoable settings for Database
Updated to latest HNHUi
2013-06-30 13:40:18 +02:00

22 lines
498 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 {
return NSDragOperationNone;
}
- (void)pathControl:(NSPathControl *)pathControl willDisplayOpenPanel:(NSOpenPanel *)openPanel {
}
@end