osxvideosink: fix missing selector name warnings

The spaces matter in ObjC

https://bugzilla.gnome.org/show_bug.cgi?id=711013
This commit is contained in:
Matthieu Bouron 2013-10-28 14:13:12 +00:00 committed by Olivier Crête
parent ec8c141d6a
commit d57b9628fc
2 changed files with 4 additions and 4 deletions

View file

@ -63,7 +63,7 @@ struct _GstOSXImage;
- (void) setFullScreen: (BOOL) flag; - (void) setFullScreen: (BOOL) flag;
- (void) setKeepAspectRatio: (BOOL) flag; - (void) setKeepAspectRatio: (BOOL) flag;
- (void) reshape; - (void) reshape;
- (void) setVideoSize: (int) w: (int) h; - (void) setVideoSize:(int)w : (int)h;
- (NSRect) getDrawingBounds; - (NSRect) getDrawingBounds;
- (BOOL) haveSuperview; - (BOOL) haveSuperview;
- (void) haveSuperviewReal: (NSMutableArray *)closure; - (void) haveSuperviewReal: (NSMutableArray *)closure;

View file

@ -681,7 +681,7 @@ const gchar* gst_keycode_to_keyname(gint16 keycode)
} }
} }
- (void) setVideoSize: (int) w:(int) h { - (void) setVideoSize: (int)w : (int)h {
GST_LOG ("width:%d, height:%d", w, h); GST_LOG ("width:%d, height:%d", w, h);
width = w; width = w;
@ -769,7 +769,7 @@ const gchar* gst_keycode_to_keyname(gint16 keycode)
navigation = nav; navigation = nav;
} }
- (void)sendMouseEvent:(NSEvent *)event: (const char *)event_name - (void)sendMouseEvent:(NSEvent *)event : (const char *)event_name
{ {
NSPoint location; NSPoint location;
gint button; gint button;
@ -806,7 +806,7 @@ const gchar* gst_keycode_to_keyname(gint16 keycode)
gst_navigation_send_mouse_event (navigation, event_name, button, x, y); gst_navigation_send_mouse_event (navigation, event_name, button, x, y);
} }
- (void)sendKeyEvent:(NSEvent *)event: (const char *)event_name - (void)sendKeyEvent:(NSEvent *)event : (const char *)event_name
{ {
if (!navigation) if (!navigation)
return; return;