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

Cleaned up a few String::empty uses

This commit is contained in:
jules 2015-12-21 12:01:28 +00:00
parent 79d2a40035
commit ae712c72d8
16 changed files with 40 additions and 40 deletions

View file

@ -982,7 +982,7 @@ String MidiMessage::getMidiNoteName (int note, bool useSharps, bool includeOctav
return s;
}
return String::empty;
return String();
}
double MidiMessage::getMidiNoteInHertz (int noteNumber, const double frequencyOfA) noexcept