mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 15:12:21 +00:00
Fixed #39 Overall search behavior ironed out.
Fixed #71 Added A simple entropy calculation for purely random generated passwords Added separate Views for Group and Entry Inspector Added "no Selection" view for Inpsector
This commit is contained in:
29
MacPass/MPDatePickingViewController.m
Normal file
29
MacPass/MPDatePickingViewController.m
Normal file
@@ -0,0 +1,29 @@
|
||||
//
|
||||
// MPDatePickingViewController.m
|
||||
// MacPass
|
||||
//
|
||||
// Created by Michael Starke on 27.07.13.
|
||||
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
|
||||
//
|
||||
|
||||
#import "MPDatePickingViewController.h"
|
||||
|
||||
@interface MPDatePickingViewController ()
|
||||
|
||||
@end
|
||||
|
||||
@implementation MPDatePickingViewController
|
||||
|
||||
- (id)init {
|
||||
self = [self initWithNibName:@"DatePickingView" bundle:nil];
|
||||
return self;
|
||||
}
|
||||
|
||||
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
|
||||
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
||||
if (self) {
|
||||
}
|
||||
return self;
|
||||
}
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user