[MOVED] Key logic now in a common class extension on MPAppDelegate so it can be shared between iOS and OS X apps. [MOVED] MPConfig for sharing between iOS and OS X apps. [CHANGED] keyphrase -> key.
16 lines
379 B
Objective-C
16 lines
379 B
Objective-C
//
|
|
// MPPasswordWindowController.h
|
|
// MasterPassword-Mac
|
|
//
|
|
// Created by Maarten Billemont on 04/03/12.
|
|
// Copyright (c) 2012 Lyndir. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface MPPasswordWindowController : NSWindowController <NSTextFieldDelegate>
|
|
@property (weak) IBOutlet NSTextField *siteField;
|
|
@property (weak) IBOutlet NSTextField *contentField;
|
|
|
|
@end
|