clouseau: Fixed image source printing

Signed-off-by: Aharon Hillel <a.hillel@samsung.com>

SVN revision: 74072
This commit is contained in:
Aharon Hillel 2012-07-18 13:55:15 +00:00 committed by Tom Hacohen
parent 0c88d8b62b
commit abbd2a7f19
1 changed files with 3 additions and 1 deletions

View File

@ -530,7 +530,9 @@ clouseau_obj_information_list_populate(Clouseau_Tree_Item *treeit, Evas_Object *
{
_clouseau_information_string_to_tree(main_tit, "Filename", oinfo->extra_props.u.image.file);
_clouseau_information_string_to_tree(main_tit, "File key", oinfo->extra_props.u.image.key);
_clouseau_information_string_to_tree(main_tit, "Source", oinfo->extra_props.u.image.source);
snprintf(buf, sizeof(buf), "Source: %p", oinfo->extra_props.u.image.source);
_clouseau_information_buffer_to_tree(main_tit, buf);
_clouseau_information_string_to_tree(main_tit, "Load error", oinfo->extra_props.u.image.load_err);
}
else if (oinfo->extra_props.type == CLOUSEAU_OBJ_TYPE_EDJE)