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:
parent
40e8a8916b
commit
bd7c046f76
10 changed files with 47 additions and 45 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue