1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
jules 2007-09-04 14:13:10 +00:00
parent 3e80bbbe4c
commit 8cd120aead

View file

@ -922,7 +922,7 @@ private:
return floatToLong (String (valueString).getFloatValue());
}
Cmn_Bool IsKeyValid(long key) const { return true; }
Cmn_Bool IsKeyValid (long key) const { return true; }
void GetNameOfLength (char* name, int maxLength, OSType inControllerType) const
{
@ -944,7 +944,10 @@ private:
juceFilter->getParameterText (index).copyToBuffer (valueString, maxLength);
}
Cmn_Bool IsAutomatable() const { return true; }
Cmn_Bool IsAutomatable() const
{
return juceFilter->isParameterAutomatable (index);
}
private:
//==============================================================================