Browse Source

Made AudioProcessor::addListener virtual

tags/2021-05-28
jules 12 years ago
parent
commit
4801b5c3e6
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_audio_processors/processors/juce_AudioProcessor.h

+ 2
- 2
modules/juce_audio_processors/processors/juce_AudioProcessor.h View File

@@ -555,10 +555,10 @@ public:
//============================================================================== //==============================================================================
/** Adds a listener that will be called when an aspect of this processor changes. */ /** Adds a listener that will be called when an aspect of this processor changes. */
void addListener (AudioProcessorListener* newListener);
virtual void addListener (AudioProcessorListener* newListener);
/** Removes a previously added listener. */ /** Removes a previously added listener. */
void removeListener (AudioProcessorListener* listenerToRemove);
virtual void removeListener (AudioProcessorListener* listenerToRemove);
//============================================================================== //==============================================================================
/** Tells the processor to use this playhead object. /** Tells the processor to use this playhead object.


Loading…
Cancel
Save