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

Made AudioProcessor::setNonRealtime virtual to allow subclasses to intercept this.

This commit is contained in:
jules 2014-08-10 18:14:08 +01:00
parent 66b420afdf
commit 97b0a7df3c

View file

@ -325,7 +325,7 @@ public:
/** Called by the host to tell this processor whether it's being used in a non-realtime
capacity for offline rendering or bouncing.
*/
void setNonRealtime (bool isNonRealtime) noexcept;
virtual void setNonRealtime (bool isNonRealtime) noexcept;
//==============================================================================
/** Creates the filter's UI.