.Core: Json \u another fix

git-svn-id: svn://ultimatepp.org/upp/trunk@5180 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-07-12 14:59:25 +00:00
parent a9510f6898
commit f4381584ae

View file

@ -71,7 +71,7 @@ String AsJSON(const Value& v, const String& sep, bool pretty)
}
if(pretty)
r << sep1;
r << AsCString((String)m.GetKeys()[i]) << (pretty ? ": " : ":")
r << AsJSON((String)m.GetKey(i)) << (pretty ? ": " : ":")
<< AsJSON(va[i], sep1, pretty);
}
if(pretty)