From d605d6c3c04c1e26121f9b1c5c1d2dbcc5f7bc37 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 13 May 2019 19:47:19 -0700 Subject: UtfString & Json overhaul. UtfString supports a load of new stuff, and Json uses UtfString exclusively now. --- src/tools/jsontool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/tools/jsontool.cpp') diff --git a/src/tools/jsontool.cpp b/src/tools/jsontool.cpp index 4b6f232..e086fb8 100644 --- a/src/tools/jsontool.cpp +++ b/src/tools/jsontool.cpp @@ -16,8 +16,8 @@ void printThing( Bu::Json &j, int iDepth=0 ) case Bu::Json::Object: Bu::println(""); { - Bu::StringList lKeys = j.getKeys(); - for( Bu::StringList::iterator i = lKeys.begin(); i; i++ ) + Bu::UtfStringList lKeys = j.getKeys(); + for( Bu::UtfStringList::iterator i = lKeys.begin(); i; i++ ) { for(int k = 0; k < iDepth+1; k++ ) Bu::print(" "); -- cgit v1.2.3