Browse Source

Label attribute of AudioProcessorParamater should be public

tags/2021-05-28
hogliux 9 years ago
parent
commit
5e9c2566e3
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.h

+ 3
- 2
modules/juce_audio_processors/utilities/juce_AudioProcessorParameterWithID.h View File

@@ -44,9 +44,10 @@ public:
/** Provides access to the parameter's name. */
const String name;
private:
String label;
/** Provides access to the parameter's label. */
const String label;
private:
String getName (int) const override;
String getLabel() const override;


Loading…
Cancel
Save