1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed visibility for some AudioProcessorParameterWithID methods

This commit is contained in:
jules 2019-10-07 09:15:10 +01:00
parent be134d9185
commit 5d7e2190e7

View file

@ -42,7 +42,7 @@ public:
*/
AudioProcessorParameterWithID (const String& parameterID,
const String& parameterName,
const String& parameterLabel = String(),
const String& parameterLabel = {},
Category parameterCategory = AudioProcessorParameter::genericParameter);
/** Destructor. */
@ -60,11 +60,11 @@ public:
/** Provides access to the parameter's category. */
const Category category;
private:
String getName (int) const override;
String getLabel() const override;
Category getCategory() const override;
private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (AudioProcessorParameterWithID)
};