From 401461f1f09bc4d60cdfb1a920171ea6bc012738 Mon Sep 17 00:00:00 2001 From: daboe01 Date: Sun, 14 Oct 2018 13:36:53 +0200 Subject: [PATCH] fixed: wrong return type in isMovable --- 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..4a02eae68 100644 --- a/AppKit/CPWindow/CPWindow.j +++ b/AppKit/CPWindow/CPWindow.j @@ -1815,7 +1815,7 @@ CPTexturedBackgroundWindowMask /*! Returns \c YES if the window can be moved. */ -- (void)isMovable +- (BOOL)isMovable { return _isMovable; }