Fixed: Compilation on Mac OS X 10.5

This commit is contained in:
kervala 2010-11-09 13:21:17 +01:00
parent 66c378f020
commit c690500b85

View file

@ -22,7 +22,10 @@ namespace NL3D
NSApplicationTerminateReply applicationShouldTerminate(CDriverGL*);
}
@interface CocoaApplicationDelegate : NSObject<NSApplicationDelegate>
@interface CocoaApplicationDelegate : NSObject
#if defined(MAC_OS_X_VERSION_10_6) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
<NSApplicationDelegate>
#endif
{
NL3D::CDriverGL* _driver;
}