aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone/iphone_keyboard.m
diff options
context:
space:
mode:
authorJohannes Schickel2009-05-24 21:53:29 +0000
committerJohannes Schickel2009-05-24 21:53:29 +0000
commitc97a1aed74fc54176e0de66fc2b6bbe0767e8de6 (patch)
tree5fed1a82a5546fd28d5d6b6695a6fe6be30f75fa /backends/platform/iphone/iphone_keyboard.m
parentfd0578f151193e8fe4f31415c631f08d7179ddf9 (diff)
downloadscummvm-rg350-c97a1aed74fc54176e0de66fc2b6bbe0767e8de6.tar.gz
scummvm-rg350-c97a1aed74fc54176e0de66fc2b6bbe0767e8de6.tar.bz2
scummvm-rg350-c97a1aed74fc54176e0de66fc2b6bbe0767e8de6.zip
Also strip trailing whitespaces in C and Objective-C source files. (Seems I forgot that we got those too :-P)
svn-id: r40872
Diffstat (limited to 'backends/platform/iphone/iphone_keyboard.m')
-rw-r--r--backends/platform/iphone/iphone_keyboard.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/iphone/iphone_keyboard.m b/backends/platform/iphone/iphone_keyboard.m
index a5052ac077..ba19773a34 100644
--- a/backends/platform/iphone/iphone_keyboard.m
+++ b/backends/platform/iphone/iphone_keyboard.m
@@ -45,11 +45,11 @@
- (id)initWithKeyboard:(SoftKeyboard*)keyboard; {
self = [super initWithFrame:CGRectMake(0.0f, 0.0f, 0.0f, 0.0f)];
softKeyboard = keyboard;
-
+
[[self textInputTraits] setAutocorrectionType:1];
[[self textInputTraits] setAutocapitalizationType:0];
[[self textInputTraits] setEnablesReturnKeyAutomatically:NO];
-
+
return self;
}
@@ -67,7 +67,7 @@
}
[softKeyboard handleKeyPress:[character characterAtIndex:0]];
-
+
return NO;
}