1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

macOS: Fixed an incorrect selector in the WKWebView delegate class

This commit is contained in:
ed 2020-12-09 12:36:20 +00:00
parent dc21f6fdad
commit 3a908f848a

View file

@ -153,7 +153,7 @@ struct WebViewDelegateClass : public ObjCClass<NSObject>
addMethod (@selector (webView:didFailProvisionalNavigation:withError:), didFailProvisionalNavigation, "v@:@@@");
#if WKWEBVIEW_WEBVIEWDIDCLOSE_SUPPORTED
addMethod (@selector (webView:webViewDidClose:), webViewDidClose, "v@:@");
addMethod (@selector (webViewDidClose:), webViewDidClose, "v@:@");
#endif
addMethod (@selector (webView:createWebViewWithConfiguration:forNavigationAction: