1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-27 02:20:05 +00:00

Changes for VC6 comptibility. Fixed a typo in BitArray::toString.

This commit is contained in:
Julian Storer 2009-12-11 10:57:31 +00:00
parent 03b54862c5
commit ce7def1f9d
11 changed files with 362 additions and 216 deletions

View file

@ -875,7 +875,7 @@ const String BitArray::toString (const int base, const int minimumNumCharacters)
const int length = s.length();
if (length < minimumNumCharacters)
s = String::repeatedString (T("0"), minimumNumCharacters - length);
s = String::repeatedString (T("0"), minimumNumCharacters - length) + s;
return isNegative() ? T("-") + s : s;
}