]> git.saurik.com Git - cydia.git/blob - UICaboodle/RVPage.mm
Fix rotation support in keyboard resizing.
[cydia.git] / UICaboodle / RVPage.mm
1 #import "RVPage.h"
2
3 #import <Foundation/Foundation.h>
4 #import <UIKit/UIKit.h>
5
6 #import "RVBook.h"
7
8 extern bool IsWildcat_;
9
10 @implementation CYViewController
11 - (void) setDelegate:(id)delegate {
12 delegate_ = delegate;
13 }
14 - (void) reloadData {
15 }
16 - (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)orientation {
17 return IsWildcat_ || orientation == UIInterfaceOrientationPortrait;
18 }
19 @end