Added EntryViewController

Fixed issues with firstResponder in MainWindowController
This commit is contained in:
michael starke
2013-02-18 02:20:57 +01:00
parent eb1621b970
commit 94ec1ccde3
17 changed files with 448 additions and 354 deletions

View File

@@ -0,0 +1,21 @@
//
// MPEntryViewController.m
// MacPass
//
// Created by michael starke on 18.02.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPEntryViewController.h"
@interface MPEntryViewController ()
@end
@implementation MPEntryViewController
- (id)init {
return [[MPEntryViewController alloc] initWithNibName:@"EntryView" bundle:nil];
}
@end