2013-07-31 05:32:24 -05:00
|
|
|
// -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2013-07-30 16:54:59 -05:00
|
|
|
//
|
2013-07-31 05:32:24 -05:00
|
|
|
// This file is part of the LibreOffice project.
|
2013-07-30 16:54:59 -05:00
|
|
|
//
|
2013-07-31 05:32:24 -05:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2013-07-30 16:54:59 -05:00
|
|
|
|
2013-09-18 11:56:26 -05:00
|
|
|
#import "ServerListViewController~ipad.h"
|
2013-07-30 16:54:59 -05:00
|
|
|
|
2013-09-18 11:56:26 -05:00
|
|
|
@interface ServerListViewController_ipad ()
|
2013-07-30 16:54:59 -05:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2013-09-18 11:56:26 -05:00
|
|
|
@implementation ServerListViewController_ipad
|
2013-07-30 16:54:59 -05:00
|
|
|
|
|
|
|
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
|
|
|
|
{
|
|
|
|
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
|
|
|
|
if (self) {
|
|
|
|
// Custom initialization
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)viewDidLoad
|
|
|
|
{
|
|
|
|
[super viewDidLoad];
|
|
|
|
// Do any additional setup after loading the view.
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)didReceiveMemoryWarning
|
|
|
|
{
|
|
|
|
[super didReceiveMemoryWarning];
|
|
|
|
// Dispose of any resources that can be recreated.
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)viewDidUnload {
|
|
|
|
[super viewDidUnload];
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - Actions
|
|
|
|
- (IBAction)cancelModalView:(id)sender {
|
|
|
|
[self.presentingViewController dismissModalViewControllerAnimated:YES];
|
|
|
|
}
|
|
|
|
@end
|