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:
parent
be134d9185
commit
5d7e2190e7
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue