mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01: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) 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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue