use e_util_strcmp() in e_font stuff

CID 1039827, 1039826
This commit is contained in:
Mike Blumenkrantz 2014-04-04 15:21:58 -04:00
parent 19bc0d5a5e
commit 9d0f4b7036
1 changed files with 2 additions and 2 deletions

View File

@ -322,7 +322,7 @@ e_font_fallback_remove(const char *font)
EINA_LIST_FOREACH(e_config->font_fallbacks, next, eff)
{
if (!strcmp(eff->name, font))
if (!e_util_strcmp(eff->name, font))
{
e_config->font_fallbacks =
eina_list_remove_list(e_config->font_fallbacks, next);
@ -407,7 +407,7 @@ e_font_default_remove(const char *text_class)
/* search for the text class */
EINA_LIST_FOREACH(e_config->font_defaults, next, efd)
{
if (!strcmp(efd->text_class, text_class))
if (!e_util_strcmp(efd->text_class, text_class))
{
e_config->font_defaults =
eina_list_remove_list(e_config->font_defaults, next);