2
0
MasterPassword/MasterPassword/Mac/MPPasswordWindowController.m
Maarten Billemont 6bda70920b Fix Pearl/scrypt/openssl on Mac + password window.
[FIXED]     Dependencies and compilation on OS X.
[ADDED]     MPPasswordWindowController: Window to handle passwords.
2012-03-05 09:53:32 +01:00

27 lines
458 B
Objective-C

//
// MPPasswordWindowController.m
// MasterPassword-Mac
//
// Created by Maarten Billemont on 04/03/12.
// Copyright (c) 2012 Lyndir. All rights reserved.
//
#import "MPPasswordWindowController.h"
@interface MPPasswordWindowController ()
@end
@implementation MPPasswordWindowController
@synthesize siteField;
@synthesize contentField;
- (void)windowDidLoad {
[super windowDidLoad];
[self.contentField setStringValue:@""];
}
@end