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:
Josep Torra 2012-05-30 16:03:55 +02:00 committed by Sebastian Dröge
parent 88554404e6
commit 76b7998e4f

View file

@ -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