From 5b008163af4cea462a92007815e84ab4bdb1181d Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sun, 6 Oct 2019 16:58:06 +0200 Subject: [PATCH] Cocoa: Add NSApplicationDelegate protocol From https://github.com/glfw/glfw/commit/c3ed70a4b77a2a4a08ef9a7cac7ac64a1835118d. --- glfw/cocoa_window.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glfw/cocoa_window.m b/glfw/cocoa_window.m index a6880327d..b3f01b40f 100644 --- a/glfw/cocoa_window.m +++ b/glfw/cocoa_window.m @@ -667,7 +667,7 @@ static const NSRange kEmptyRange = { NSNotFound, 0 }; // Delegate for application related notifications {{{ -@interface GLFWApplicationDelegate : NSObject +@interface GLFWApplicationDelegate : NSObject @end @implementation GLFWApplicationDelegate