2011-11-30 21:42:40 +00:00
|
|
|
//
|
|
|
|
// OPRecentViewController.m
|
|
|
|
// OnePassword
|
|
|
|
//
|
|
|
|
// Created by Maarten Billemont on 27/11/11.
|
|
|
|
// Copyright (c) 2011 Lyndir. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "OPRecentViewController.h"
|
|
|
|
|
|
|
|
@implementation OPRecentViewController
|
|
|
|
@dynamic tableView;
|
|
|
|
|
|
|
|
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
|
|
|
|
{
|
|
|
|
// Return YES for supported orientations
|
2012-01-05 00:44:15 +00:00
|
|
|
return YES;
|
2011-11-30 21:42:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|