From f4381584ae203cb95cd3b954e213fa7f3aba6989 Mon Sep 17 00:00:00 2001 From: cxl Date: Thu, 12 Jul 2012 14:59:25 +0000 Subject: [PATCH] .Core: Json \u another fix git-svn-id: svn://ultimatepp.org/upp/trunk@5180 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Core/JSON.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/Core/JSON.cpp b/uppsrc/Core/JSON.cpp index 8564cc477..b87eae11e 100644 --- a/uppsrc/Core/JSON.cpp +++ b/uppsrc/Core/JSON.cpp @@ -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)