mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
2007-12-21 Emmanuele Bassi <ebassi@openedhand.com>
* Makefile.am: Move tests build before docs, to cut down the distcheck failure discovery * clutter.symbols: Add clutter_texture_set_area_from_rgb_data() * clutter/clutter-actor.c: * clutter/clutter-script.c: * clutter/clutter-texture.c: * clutter/json/json-generator.c: * clutter/json/json-parser.c: Compilation fixes for passing distcheck * tests/test-grab.c: * tests/test-score.c: * tests/test-script.c: * tests/test-shader.c: * tests/test-unproject.c: Ditto as above
This commit is contained in:
@ -1094,11 +1094,11 @@ apply_behaviours (ClutterScript *script,
|
||||
object = clutter_script_get_object (script, name);
|
||||
if (!object)
|
||||
{
|
||||
ObjectInfo *oinfo;
|
||||
ObjectInfo *behaviour_info;
|
||||
|
||||
oinfo = g_hash_table_lookup (script->priv->objects, name);
|
||||
if (oinfo)
|
||||
object = clutter_script_construct_object (script, oinfo);
|
||||
behaviour_info = g_hash_table_lookup (script->priv->objects, name);
|
||||
if (behaviour_info)
|
||||
object = clutter_script_construct_object (script, behaviour_info);
|
||||
}
|
||||
|
||||
if (!object)
|
||||
@ -1136,11 +1136,11 @@ add_children (ClutterScript *script,
|
||||
object = clutter_script_get_object (script, name);
|
||||
if (!object)
|
||||
{
|
||||
ObjectInfo *oinfo;
|
||||
ObjectInfo *child_info;
|
||||
|
||||
oinfo = g_hash_table_lookup (script->priv->objects, name);
|
||||
if (oinfo)
|
||||
object = clutter_script_construct_object (script, oinfo);
|
||||
child_info = g_hash_table_lookup (script->priv->objects, name);
|
||||
if (child_info)
|
||||
object = clutter_script_construct_object (script, child_info);
|
||||
}
|
||||
|
||||
if (!object)
|
||||
|
Reference in New Issue
Block a user