mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 12:52:21 +00:00
22 lines
498 B
Objective-C
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
|