mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 17:04:24 +09:00
21 lines
491 B
Mathematica
21 lines
491 B
Mathematica
|
|
/*
|
||
|
|
main tabbar controller
|
||
|
|
|
||
|
|
Copyright 2013 Thinstuff Technologies GmbH, Author: Martin Fleisz
|
||
|
|
|
||
|
|
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/.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#import "MainTabBarController.h"
|
||
|
|
|
||
|
|
|
||
|
|
@implementation MainTabBarController
|
||
|
|
|
||
|
|
-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
|
||
|
|
{
|
||
|
|
return YES;
|
||
|
|
}
|
||
|
|
|
||
|
|
@end
|