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

FileChooser: Fix function signature for Obj-C interop

This commit is contained in:
reuk 2021-12-07 18:18:21 +00:00
parent 81013b0517
commit 9f7409fd3e
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -332,7 +332,7 @@ private:
jassert ([panel preventsApplicationTerminationWhenModal]);
}
static BOOL preventsApplicationTerminationWhenModal() { return YES; }
static BOOL preventsApplicationTerminationWhenModal (id, SEL) { return YES; }
template <typename Base>
struct SafeModalPanel : public ObjCClass<Base>