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:
parent
03b54862c5
commit
ce7def1f9d
11 changed files with 362 additions and 216 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue