6bda70920b
[FIXED] Dependencies and compilation on OS X. [ADDED] MPPasswordWindowController: Window to handle passwords.
27 lines
458 B
Objective-C
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
|