Skip to content

Commit

Permalink
Fixed an incorrect variable type.
Browse files Browse the repository at this point in the history
  • Loading branch information
matej committed Feb 3, 2011
1 parent 6597ffb commit bf5efa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MBProgressHUD.m
Expand Up @@ -601,7 +601,7 @@ - (void)deviceOrientationDidChange:(NSNotification *)notification {
}

- (void)setTransformForCurrentOrientation:(BOOL)animated {
UIDeviceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
UIInterfaceOrientation orientation = [UIApplication sharedApplication].statusBarOrientation;
NSInteger degrees = 0;

if (UIInterfaceOrientationIsLandscape(orientation)) {
Expand Down

0 comments on commit bf5efa2

Please sign in to comment.