Browse Source

Virtualised a couple of methods in StandalonePluginHolder

tags/2021-05-28
jules 10 years ago
parent
commit
ab018dbe38
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h

+ 2
- 2
modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h View File

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


Loading…
Cancel
Save