2
0
MasterPassword/MasterPassword/Mac/MPPasswordWindowController.m

27 lines
458 B
Mathematica
Raw Normal View History

//
// 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