void getParameterLabel (VstInt32 index, char* text) override
{
if (filter != nullptr)
{
jassert (isPositiveAndBelow (index, filter->getNumParameters()));
filter->getParameterLabel (index).copyToUTF8 (text, 24); // length should technically be kVstMaxParamStrLen, which is 8, but hosts will normally allow a bit more.
}
}
noticed that getParameterLabel() is not implemented in juce_VST_Wrapper.cpp. here it is if anyone wants it
