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:
parent
7aa52af5dd
commit
704aa0c6d7
@ -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
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user