mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
osxvideosink: Fix last commit to actually work
MAC_OS_X_VERSION_10_6 is obviously not defined on 10.5.
This commit is contained in:
parent
88554404e6
commit
76b7998e4f
1 changed files with 3 additions and 3 deletions
|
@ -107,10 +107,10 @@ GType gst_osx_video_sink_get_type(void);
|
|||
@end
|
||||
|
||||
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_6
|
||||
@interface GstWindowDelegate : NSObject <NSWindowDelegate>
|
||||
#else
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED <= MAC_OS_X_VERSION_10_5
|
||||
@interface GstWindowDelegate : NSObject
|
||||
#else
|
||||
@interface GstWindowDelegate : NSObject <NSWindowDelegate>
|
||||
#endif
|
||||
{
|
||||
@public
|
||||
|
|
Loading…
Reference in a new issue