2007-10-10 Emmanuele Bassi <ebassi@openedhand.com>

* clutter/clutter-script.c (json_object_end): Add "type_func"
	to the list of attributes we skip.
This commit is contained in:
Emmanuele Bassi 2007-10-10 10:44:45 +00:00
parent 7aa52af5dd
commit 704aa0c6d7
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-10-10 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-script.c (json_object_end): Add "type_func"
to the list of attributes we skip.
2007-10-10 Emmanuele Bassi <ebassi@openedhand.com> 2007-10-10 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/json/json-parser.c: Use the commodity JsonNode API * clutter/json/json-parser.c: Use the commodity JsonNode API

View File

@ -600,7 +600,9 @@ json_object_end (JsonParser *parser,
val = json_object_get_member (object, name); val = json_object_get_member (object, name);
if (strcmp (name, "id") == 0 || strcmp (name, "type") == 0) if (strcmp (name, "id") == 0 ||
strcmp (name, "type_func") == 0 ||
strcmp (name, "type") == 0)
continue; continue;
else else
{ {