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

Fixed some old OSX message handling code. Made the return type of Slider::getTextFromValue non-const.

This commit is contained in:
jules 2011-10-04 12:13:30 +01:00
parent 40e8a8916b
commit bd7c046f76
10 changed files with 47 additions and 45 deletions

View file

@ -35,7 +35,7 @@ public:
setRange (0.0, 255.0, 1.0);
}
const String getTextFromValue (double value)
String getTextFromValue (double value)
{
return String::toHexString ((int) value).toUpperCase().paddedLeft ('0', 2);
}