theme.c: comment out ERR messages. Fix INF usage.

This commit is contained in:
Daniel Juyung Seo 2012-11-30 02:50:12 +09:00
parent ac6ec269ac
commit 3e65c8d7ac
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ theme_load(const char *edje_file)
wd = eina_hash_find(widget_list, token);
if (!wd)
{
ERR("%s is not a proper elementary widget.", token);
//ERR("%s is not a proper elementary widget.", token);
continue;
}
@ -87,7 +87,7 @@ theme_load(const char *edje_file)
style = strstr(style + 1, "/");
style++;
//INF(stderr, "%s %s %p", group, style, wd);
//INF("%s %s %p", group, style, wd);
wd->styles = eina_list_sorted_insert(wd->styles, cmp_func, style);
}