1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Implemented an AU method to avoid problems with some versions of the CoreAudio API.

This commit is contained in:
jules 2014-08-12 11:38:14 +01:00
parent cd30b3bfd1
commit 0147fe00f9

View file

@ -519,6 +519,10 @@ public:
return AUBase::SetParameter (inID, inScope, inElement, inValue, inBufferOffsetInFrames);
}
// No idea what this method actually does or what it should return. Current Apple docs say nothing about it.
// (Note that this isn't marked 'override' in case older versions of the SDK don't include it)
bool CanScheduleParameters() const { return false; }
//==============================================================================
ComponentResult Version() override { return JucePlugin_VersionCode; }
bool SupportsTail() override { return true; }