mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 11:42:30 +00:00
Removed private declarations as they aren't needed for the compiler anymore Fixed drawing order in MPPopupImageView Fixed #7 Error occurred due to duplicate shortcut. Copy Password now is bound to ⌘+⌥+C
19 lines
383 B
Objective-C
19 lines
383 B
Objective-C
//
|
|
// MPAppDelegate.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 19.07.12.
|
|
// Copyright (c) 2012 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPAppDelegate : NSObject <NSApplicationDelegate>
|
|
|
|
@property (retain) IBOutlet NSWindow *passwordCreatorWindow;
|
|
|
|
- (IBAction)showPasswordCreator:(id)sender;
|
|
|
|
- (NSString *)applicationName;
|
|
|
|
@end |