From f618b6de662f47708b08e69a8ef231397bf62a76 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 20 Sep 2014 22:16:42 -0400 Subject: [PATCH] iOS: Fix mismatching types in iOS 7 keyboard code --- apple/iOS/platform.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/iOS/platform.m b/apple/iOS/platform.m index 5aa283b21c..789f7627d7 100644 --- a/apple/iOS/platform.m +++ b/apple/iOS/platform.m @@ -105,7 +105,7 @@ static void handle_touch_event(NSArray* touches) @end @interface UIApplication(iOS7Keyboard) -- (id)_keyCommandForEvent:(id)event; +- (id)_keyCommandForEvent:(UIEvent*)event; @end @interface RApplication : UIApplication