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
This commit is contained in:
daniel
2019-03-28 14:08:00 -07:00
parent ec24977d4e
commit c59e7cc456
+1 -1
View File
@@ -479,7 +479,7 @@ var CPApplicationDelegate_applicationShouldTerminate_ = 1 << 0,
[self _didResignActive];
}
- (void)isActive
- (BOOL)isActive
{
return _isActive;
}