]> git.proxmox.com Git - qemu.git/commitdiff
cocoa: Avoid warning related to multiple handleEvent: definitions
authorAndreas Färber <andreas.faerber@web.de>
Thu, 9 Jun 2011 18:53:32 +0000 (20:53 +0200)
committerAndreas Färber <andreas.faerber@web.de>
Tue, 14 Jun 2011 01:08:58 +0000 (03:08 +0200)
Avoid compiler confusion as to which method signature to use for the
handleEvent: selector on OSX >= 10.6 by making the variable type-safe
as opposed to generic 'id' type.
Requires moving the variable definition to after the class definition.

----8<----
ui/cocoa.m: In function ‘cocoa_refresh’:
ui/cocoa.m:997: warning: multiple methods named ‘-handleEvent:’ found
/System/Library/Frameworks/AppKit.framework/Headers/NSTextInputContext.h:84: warning: using ‘-(BOOL)handleEvent:(NSEvent *)theEvent’
ui/cocoa.m:272: warning: also found ‘-(void)handleEvent:(NSEvent *)event’
----8<---

Reported-by: Alexandre Raymond <cerbere@gmail.com>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Tested-by: Alexandre Raymond <cerbere@gmail.com>
ui/cocoa.m

index 1c54759775169bcea73776a3de4ce13ef7cf44fd..515e684dd21e3a4fad27e8a5728d8aa4de3c1b3f 100644 (file)
@@ -63,7 +63,6 @@ typedef struct {
 } QEMUScreen;
 
 NSWindow *normalWindow;
-id cocoaView;
 static DisplayChangeListener *dcl;
 
 int gArgc;
@@ -278,6 +277,8 @@ static int cocoa_keycode_to_qemu(int keycode)
 - (QEMUScreen) gscreen;
 @end
 
+QemuCocoaView *cocoaView;
+
 @implementation QemuCocoaView
 - (id)initWithFrame:(NSRect)frameRect
 {