Fixed syntax error
This commit is contained in:
parent
a5d17c62db
commit
adff2fb994
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,8 @@
|
||||||
|
|
||||||
#ifndef __IPHONE_6_0
|
#ifndef __IPHONE_6_0
|
||||||
// This enum isn't available in older SDKs, but we use it for our own purposes on iOS 5.1 and for the system on iOS 6.0
|
// This enum isn't available in older SDKs, but we use it for our own purposes on iOS 5.1 and for the system on iOS 6.0
|
||||||
enum UIInterfaceOrientationMask) {
|
enum UIInterfaceOrientationMask
|
||||||
|
{
|
||||||
UIInterfaceOrientationMaskPortrait = (1 << UIInterfaceOrientationPortrait),
|
UIInterfaceOrientationMaskPortrait = (1 << UIInterfaceOrientationPortrait),
|
||||||
UIInterfaceOrientationMaskLandscapeLeft = (1 << UIInterfaceOrientationLandscapeLeft),
|
UIInterfaceOrientationMaskLandscapeLeft = (1 << UIInterfaceOrientationLandscapeLeft),
|
||||||
UIInterfaceOrientationMaskLandscapeRight = (1 << UIInterfaceOrientationLandscapeRight),
|
UIInterfaceOrientationMaskLandscapeRight = (1 << UIInterfaceOrientationLandscapeRight),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue