diff -r 08c6ccc28007 -r 9fd7b8d3cf4d project_files/HedgewarsMobile/Classes/RestoreViewController.m --- a/project_files/HedgewarsMobile/Classes/RestoreViewController.m Mon Oct 05 20:31:46 2015 +0200 +++ b/project_files/HedgewarsMobile/Classes/RestoreViewController.m Wed Oct 14 02:28:32 2015 +0200 @@ -20,6 +20,11 @@ #import "RestoreViewController.h" #import "GameInterfaceBridge.h" +@interface RestoreViewController () +@property (retain, nonatomic) IBOutlet UIButton *restoreButton; +@property (retain, nonatomic) IBOutlet UIButton *dismissButton; +@end + @implementation RestoreViewController -(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { @@ -44,6 +49,9 @@ -(void) viewDidLoad { [super viewDidLoad]; + + [self.restoreButton applyDarkBlueQuickStyle]; + [self.dismissButton applyDarkBlueQuickStyle]; } -(void) didReceiveMemoryWarning { @@ -55,6 +63,8 @@ } -(void) dealloc { + [_restoreButton release]; + [_dismissButton release]; [super dealloc]; }