mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-27 22:42:57 +00:00
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:
parent
35c30ab62f
commit
39042dc4bf
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue