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

MPE: Change MPESynthesizer::voicesLock member from private to protected so that sub-classes can lock the voicedLock

This commit is contained in:
hogliux 2017-10-09 10:57:47 +01:00
parent 0eb89d650a
commit 6e23c4806b

View file

@ -297,11 +297,11 @@ protected:
//==============================================================================
OwnedArray<MPESynthesiserVoice> voices;
CriticalSection voicesLock;
private:
//==============================================================================
bool shouldStealVoices;
CriticalSection voicesLock;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MPESynthesiser)
};