From c59e7cc456e042aaea0e621dbbca7a37daabc7dc Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 28 Mar 2019 14:08:00 -0700 Subject: [PATCH] Fixed: Changed CPApplication's isActive method return type to BOOL Method has declared return type of void, despite the method returning a BOOL, and the name implying that it returns a BOOL --- AppKit/CPApplication.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPApplication.j b/AppKit/CPApplication.j index 9279f8997..0a1c5fd05 100644 --- a/AppKit/CPApplication.j +++ b/AppKit/CPApplication.j @@ -479,7 +479,7 @@ var CPApplicationDelegate_applicationShouldTerminate_ = 1 << 0, [self _didResignActive]; } -- (void)isActive +- (BOOL)isActive { return _isActive; }