1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

Minor string literal tidy-ups.

This commit is contained in:
Julian Storer 2010-03-23 17:36:12 +00:00
parent f316faaa04
commit 841a6665bd
148 changed files with 2219 additions and 2273 deletions

View file

@ -188,7 +188,7 @@ const String var::toString() const
{
case voidType: return String::empty;
case intType: return String (value.intValue);
case boolType: return value.boolValue ? T("1") : T("0");
case boolType: return String::charToString (value.boolValue ? '1' : '0');
case doubleType: return String (value.doubleValue);
case stringType: return *(value.stringValue);
case objectType: return "Object 0x" + String::toHexString ((int) (pointer_sized_int) value.objectValue);