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

Virtualised a couple of methods in StandalonePluginHolder

This commit is contained in:
jules 2015-03-17 10:04:34 +00:00
parent 61293f590e
commit ab018dbe38

View file

@ -60,7 +60,7 @@ public:
}
//==============================================================================
void createPlugin()
virtual void createPlugin()
{
AudioProcessor::setTypeOfNextNewPlugin (AudioProcessor::wrapperType_Standalone);
processor = createPluginFilter();
@ -72,7 +72,7 @@ public:
44100, 512);
}
void deletePlugin()
virtual void deletePlugin()
{
stopPlaying();
processor = nullptr;