From b0522aa8f77da5769da805d55f481469c938c262 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Fri, 30 Aug 2019 13:37:59 +1000 Subject: [PATCH] osxvideosink: call superclass in reshape Fixes macos werror build ../sys/osxvideo/cocoawindow.m:437:1: error: method possibly missing a [super reshape] call [-Werror,-Wobjc-missing-super-calls] } ^ --- sys/osxvideo/cocoawindow.m | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/osxvideo/cocoawindow.m b/sys/osxvideo/cocoawindow.m index dab04256b5..1a350787fd 100644 --- a/sys/osxvideo/cocoawindow.m +++ b/sys/osxvideo/cocoawindow.m @@ -397,6 +397,7 @@ const gchar* gst_keycode_to_keyname(gint16 keycode) gdouble frame_par, view_par; gint view_height, view_width, c_height, c_width, c_x, c_y; + [super reshape]; GST_LOG ("reshaping");