Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLeviathan committed Feb 17, 2015
2 parents 4769cf2 + 76f0231 commit c7c5d55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SpeakSwift/SpeakSwift/SSMainViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ class SSMainViewController: UIViewController, UIPickerViewDelegate, UIPickerView


override func supportedInterfaceOrientations() -> Int {
return Int(UIInterfaceOrientationMask.All.toRaw())
return Int(UIInterfaceOrientationMask.All.rawValue)
}

/*
Expand Down
2 changes: 1 addition & 1 deletion SpeakSwift/SpeakSwift/SSRootNavigationController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class SSRootNavigationController: UINavigationController {
}

override func supportedInterfaceOrientations() -> Int {
return Int(UIInterfaceOrientationMask.All.toRaw())
return Int(UIInterfaceOrientationMask.All.rawValue)
}

/*
Expand Down

0 comments on commit c7c5d55

Please sign in to comment.