[Scummvm-cvs-logs] scummvm master -> 4bc07f63f28d94a33a7925c8a64e7f7468b531fb

lordhoto lordhoto at gmail.com
Wed Jun 4 20:23:30 CEST 2014


This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
a28280384d IPHONE: Add supported orientations to Info.plist.
4bc07f63f2 IPHONE: Remove superflous semicolon.


Commit: a28280384dfefd577cec00c59067081951354f26
    https://github.com/scummvm/scummvm/commit/a28280384dfefd577cec00c59067081951354f26
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-06-04T20:22:54+02:00

Commit Message:
IPHONE: Add supported orientations to Info.plist.

Changed paths:
    dists/iphone/Info.plist
    dists/iphone/Info.plist.in



diff --git a/dists/iphone/Info.plist b/dists/iphone/Info.plist
index 9667f80..6fdd7f2 100644
--- a/dists/iphone/Info.plist
+++ b/dists/iphone/Info.plist
@@ -35,5 +35,11 @@
 		<integer>1</integer>
 		<integer>2</integer>
 	</array>
+	<key>UISupportedInterfaceOrientations</key>
+	<array>
+		<string>UIInterfaceOrientationPortrait</string>
+		<string>UIInterfaceOrientationLandscapeLeft</string>
+		<string>UIInterfaceOrientationLandscapeRight</string>
+	</array>
 </dict>
 </plist>
diff --git a/dists/iphone/Info.plist.in b/dists/iphone/Info.plist.in
index efb9383..2bcdd15 100644
--- a/dists/iphone/Info.plist.in
+++ b/dists/iphone/Info.plist.in
@@ -35,5 +35,11 @@
 		<integer>1</integer>
 		<integer>2</integer>
 	</array>
+	<key>UISupportedInterfaceOrientations</key>
+	<array>
+		<string>UIInterfaceOrientationPortrait</string>
+		<string>UIInterfaceOrientationLandscapeLeft</string>
+		<string>UIInterfaceOrientationLandscapeRight</string>
+	</array>
 </dict>
 </plist>


Commit: 4bc07f63f28d94a33a7925c8a64e7f7468b531fb
    https://github.com/scummvm/scummvm/commit/4bc07f63f28d94a33a7925c8a64e7f7468b531fb
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2014-06-04T20:22:54+02:00

Commit Message:
IPHONE: Remove superflous semicolon.

Changed paths:
    backends/platform/iphone/iphone_keyboard.mm



diff --git a/backends/platform/iphone/iphone_keyboard.mm b/backends/platform/iphone/iphone_keyboard.mm
index 3f491d4b..39d68af 100644
--- a/backends/platform/iphone/iphone_keyboard.mm
+++ b/backends/platform/iphone/iphone_keyboard.mm
@@ -39,7 +39,7 @@
 
 @implementation TextInputHandler
 
-- (id)initWithKeyboard:(SoftKeyboard *)keyboard; {
+- (id)initWithKeyboard:(SoftKeyboard *)keyboard {
 	self = [super initWithFrame:CGRectMake(0.0f, 0.0f, 0.0f, 0.0f)];
 	softKeyboard = keyboard;
 






More information about the Scummvm-git-logs mailing list