From 30f8594ecfc39dd7e00daef8e83ef3c762ea4d73 Mon Sep 17 00:00:00 2001 From: ed Date: Wed, 9 Dec 2020 16:40:08 +0000 Subject: [PATCH] macOS: Fixed an incorrect selector in JuceNSViewClass --- modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm b/modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm index ed74cff79d..beeeb4cfd1 100644 --- a/modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm +++ b/modules/juce_gui_basics/native/juce_mac_NSViewComponentPeer.mm @@ -1632,7 +1632,7 @@ struct JuceNSViewClass : public ObjCClass addMethod (@selector (frameChanged:), frameChanged, "v@:@"); addMethod (@selector (windowWillMiniaturize:), windowWillMiniaturize, "v@:@"); addMethod (@selector (windowDidDeminiaturize:), windowDidDeminiaturize, "v@:@"); - addMethod (@selector (wantsDefaultClipping:), wantsDefaultClipping, "c@:"); + addMethod (@selector (wantsDefaultClipping), wantsDefaultClipping, "c@:"); addMethod (@selector (worksWhenModal), worksWhenModal, "c@:"); addMethod (@selector (viewDidMoveToWindow), viewDidMoveToWindow, "v@:"); addMethod (@selector (keyDown:), keyDown, "v@:@");