|
|
@@ -571,7 +571,7 @@ public: |
|
|
|
//============================================================================== |
|
|
|
// Juce calls |
|
|
|
|
|
|
|
void audioProcessorParameterChanged (AudioProcessor*, int index, float newValue) |
|
|
|
void audioProcessorParameterChanged (AudioProcessor*, int index, float newValue) override |
|
|
|
{ |
|
|
|
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) |
|
|
|
{ |
|
|
@@ -610,7 +610,7 @@ public: |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void audioProcessorParameterChangeGestureBegin (AudioProcessor*, int parameterIndex) |
|
|
|
void audioProcessorParameterChangeGestureBegin (AudioProcessor*, int parameterIndex) override |
|
|
|
{ |
|
|
|
if (uiTouch == nullptr) |
|
|
|
return; |
|
|
@@ -629,7 +629,7 @@ public: |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void audioProcessorParameterChangeGestureEnd (AudioProcessor*, int parameterIndex) |
|
|
|
void audioProcessorParameterChangeGestureEnd (AudioProcessor*, int parameterIndex) override |
|
|
|
{ |
|
|
|
if (uiTouch == nullptr) |
|
|
|
return; |
|
|
@@ -667,7 +667,7 @@ public: |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void timerCallback() |
|
|
|
void timerCallback() override |
|
|
|
{ |
|
|
|
if (externalUI != nullptr && externalUI->isClosed()) |
|
|
|
{ |
|
|
|