We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90d5118 commit a651830Copy full SHA for a651830
Headers/AppKit/NSMovie.h
@@ -1,6 +1,7 @@
1
-/* <title>NSMovie</title>
+/**
2
+ <title>NSMovie</title>
3
- <abstract>Encapsulate a Quicktime movie</abstract>
4
+ <abstract>Encapsulate a movie</abstract>
5
6
Copyright <copy>(C) 2003 Free Software Foundation, Inc.</copy>
7
Source/NSMovie.m
@@ -97,7 +97,11 @@ - (instancetype) initWithData: (NSData *)movie
97
98
- (instancetype) initWithMovie: (void *)movie
99
{
100
- return [self initWithData: movie];
+ //
101
+ // Unsupported, as we don't really know what the arg will point to.
102
+ // On macOS10.4 when this appeared it was assumed to be a QTMovie.
103
104
+ return nil;
105
}
106
107
- (instancetype) initWithURL: (NSURL *)url byReference: (BOOL)byRef
0 commit comments