Browse Source

Add missing override decorators

Signed-off-by: falkTX <falktx@falktx.com>
v6.0.8-distrho
falkTX 1 year ago
parent
commit
e7d4d1fcc9
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper.cpp

+ 5
- 5
modules/juce_audio_plugin_client/LV2/juce_LV2_Wrapper.cpp View File

@@ -571,7 +571,7 @@ public:
//============================================================================== //==============================================================================
// Juce calls // Juce calls


void audioProcessorParameterChanged (AudioProcessor*, int index, float newValue)
void audioProcessorParameterChanged (AudioProcessor*, int index, float newValue) override
{ {
if (inParameterChangedCallback.get()) if (inParameterChangedCallback.get())
{ {
@@ -596,7 +596,7 @@ public:
} }
} }


void audioProcessorChanged (AudioProcessor*, const ChangeDetails& details)
void audioProcessorChanged (AudioProcessor*, const ChangeDetails& details) override
{ {
if (details.programChanged && filter != nullptr && programsHost != nullptr) if (details.programChanged && filter != nullptr && programsHost != nullptr)
{ {
@@ -610,7 +610,7 @@ public:
} }
} }


void audioProcessorParameterChangeGestureBegin (AudioProcessor*, int parameterIndex)
void audioProcessorParameterChangeGestureBegin (AudioProcessor*, int parameterIndex) override
{ {
if (uiTouch == nullptr) if (uiTouch == nullptr)
return; return;
@@ -629,7 +629,7 @@ public:
} }
} }


void audioProcessorParameterChangeGestureEnd (AudioProcessor*, int parameterIndex)
void audioProcessorParameterChangeGestureEnd (AudioProcessor*, int parameterIndex) override
{ {
if (uiTouch == nullptr) if (uiTouch == nullptr)
return; return;
@@ -667,7 +667,7 @@ public:
} }
} }


void timerCallback()
void timerCallback() override
{ {
if (externalUI != nullptr && externalUI->isClosed()) if (externalUI != nullptr && externalUI->isClosed())
{ {


Loading…
Cancel
Save