Skip to content

Commit 868554a

Browse files
committedFeb 22, 2013
Fixes a warning.
Closes ViewDeck#272.
1 parent e939184 commit 868554a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎ViewDeck/IIViewDeckController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceO
994994
}
995995

996996
- (void)arrangeViewsAfterRotation {
997-
_willAppearShouldArrangeViewsAfterRotation = UIDeviceOrientationUnknown;
997+
_willAppearShouldArrangeViewsAfterRotation = (UIInterfaceOrientation)UIDeviceOrientationUnknown;
998998
if (_preRotationSize.width <= 0 || _preRotationSize.height <= 0) return;
999999

10001000
CGFloat offset, max, preSize;

0 commit comments

Comments
 (0)
Please sign in to comment.