Removed usages of JsonNodeIterator

This commit is contained in:
Benoit Blanchon
2014-10-24 18:31:50 +02:00
parent 68fb03577c
commit 1f6cd8e56e
16 changed files with 84 additions and 40 deletions

View File

@ -24,7 +24,7 @@ class JsonObject : public JsonContainer {
bool success() { return _node && _node->isObject(); }
JsonObjectIterator begin();
JsonObjectIterator begin() { return JsonObjectIterator(firstChild()); }
JsonObjectIterator end() { return JsonObjectIterator(0); }