summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuTextFieldController.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Classes/MuTextFieldController.m')
-rw-r--r--platform/ios/Classes/MuTextFieldController.m12
1 files changed, 6 insertions, 6 deletions
diff --git a/platform/ios/Classes/MuTextFieldController.m b/platform/ios/Classes/MuTextFieldController.m
index e0864ff4..45e53054 100644
--- a/platform/ios/Classes/MuTextFieldController.m
+++ b/platform/ios/Classes/MuTextFieldController.m
@@ -25,23 +25,23 @@
- (void)viewDidLoad
{
- [super viewDidLoad];
+ [super viewDidLoad];
_textView.text = initialText;
- // Do any additional setup after loading the view from its nib.
+ // Do any additional setup after loading the view from its nib.
}
- (void)didReceiveMemoryWarning
{
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
+ [super didReceiveMemoryWarning];
+ // Dispose of any resources that can be recreated.
}
- (void)dealloc
{
[okayBlock release];
[initialText release];
- [_textView release];
- [super dealloc];
+ [_textView release];
+ [super dealloc];
}
- (IBAction)okayTapped:(id)sender