From ae50fde4e13d60074a2da70c46d056e6441c4cfb Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sun, 14 Oct 2018 16:49:49 +0200 Subject: [PATCH] fixed: wrong return type of isMiniaturized --- AppKit/CPWindow/CPWindow.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPWindow/CPWindow.j b/AppKit/CPWindow/CPWindow.j index 90917f81e..53c567bb3 100644 --- a/AppKit/CPWindow/CPWindow.j +++ b/AppKit/CPWindow/CPWindow.j @@ -2390,7 +2390,7 @@ CPTexturedBackgroundWindowMask /*! Returns YES if the window is minimized. */ -- (void)isMiniaturized +- (BOOL)isMiniaturized { return _isMiniaturized; }