mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
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:
parent
ec8c141d6a
commit
d57b9628fc
2 changed files with 4 additions and 4 deletions
|
@ -63,7 +63,7 @@ struct _GstOSXImage;
|
|||
- (void) setFullScreen: (BOOL) flag;
|
||||
- (void) setKeepAspectRatio: (BOOL) flag;
|
||||
- (void) reshape;
|
||||
- (void) setVideoSize: (int) w: (int) h;
|
||||
- (void) setVideoSize:(int)w : (int)h;
|
||||
- (NSRect) getDrawingBounds;
|
||||
- (BOOL) haveSuperview;
|
||||
- (void) haveSuperviewReal: (NSMutableArray *)closure;
|
||||
|
|
|
@ -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);
|
||||
|
||||
width = w;
|
||||
|
@ -769,7 +769,7 @@ const gchar* gst_keycode_to_keyname(gint16 keycode)
|
|||
navigation = nav;
|
||||
}
|
||||
|
||||
- (void)sendMouseEvent:(NSEvent *)event: (const char *)event_name
|
||||
- (void)sendMouseEvent:(NSEvent *)event : (const char *)event_name
|
||||
{
|
||||
NSPoint location;
|
||||
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);
|
||||
}
|
||||
|
||||
- (void)sendKeyEvent:(NSEvent *)event: (const char *)event_name
|
||||
- (void)sendKeyEvent:(NSEvent *)event : (const char *)event_name
|
||||
{
|
||||
if (!navigation)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue