1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-22 01:34:21 +00:00

Made AudioProcessor::setPlayHead virtual.

This commit is contained in:
jules 2013-10-15 13:01:27 +01:00
parent bf16cbdd7f
commit a265c052c4
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ AudioProcessor::~AudioProcessor()
#endif
}
void AudioProcessor::setPlayHead (AudioPlayHead* const newPlayHead) noexcept
void AudioProcessor::setPlayHead (AudioPlayHead* const newPlayHead)
{
playHead = newPlayHead;
}

View file

@ -591,7 +591,7 @@ public:
The processor will not take ownership of the object, so the caller must delete it when
it is no longer being used.
*/
void setPlayHead (AudioPlayHead* newPlayHead) noexcept;
virtual void setPlayHead (AudioPlayHead* newPlayHead);
//==============================================================================
/** This is called by the processor to specify its details before being played. */