this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix AVPlayerView, add initWithCoder

Thomas A 5c6c75fe 4a9f1931

+10 -1
+1
src/frameworks/AVKit/CMakeLists.txt
··· 179 179 system 180 180 objc 181 181 Foundation 182 + AppKit 182 183 )
+4 -1
src/frameworks/AVKit/include/AVKit/AVPlayerView.h
··· 18 18 */ 19 19 20 20 #include <Foundation/Foundation.h> 21 + #include <AppKit/AppKit.h> 22 + 23 + @interface AVPlayerView : NSView 21 24 22 - @interface AVPlayerView : NSObject 25 + -(id)initWithCoder:(NSCoder *) decoder; 23 26 24 27 @end
+5
src/frameworks/AVKit/src/AVPlayerView.m
··· 21 21 22 22 @implementation AVPlayerView 23 23 24 + -(id)initWithCoder:(NSCoder *) decoder { 25 + self = [super initWithCoder: decoder]; 26 + return self; 27 + } 28 + 24 29 - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 30 { 26 31 return [NSMethodSignature signatureWithObjCTypes: "v@:"];