macOS application controller is now using proper delegate protocol

Fixes compilation error with Xcode 8:
cannot initialize a parameter of type 'id<NSApplicationDelegate> _Nullable' with an lvalue of type 'ApplicationController *'
This commit is contained in:
alexey.lysiuk 2016-07-17 08:15:23 +03:00 committed by Christoph Oelckers
parent 35c30ab62f
commit 39042dc4bf
1 changed files with 2 additions and 2 deletions

View File

@ -220,8 +220,8 @@ int OriginalMain(int argc, char** argv)
@interface ApplicationController : NSResponder
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1070
<NSFileManagerDelegate>
#if MAC_OS_X_VERSION_MAX_ALLOWED >= 1060
<NSApplicationDelegate>
#endif
{
}