efl: missing deprecated user.

SVN revision: 83049
This commit is contained in:
Cedric BAIL 2013-01-22 02:14:07 +00:00
parent 336e0c5e38
commit d32ee023e3
2 changed files with 4 additions and 4 deletions

View File

@ -285,7 +285,7 @@ eina_unicode_utf8_get_prev(const char *buf, int *iindex)
ind = *iindex;
/* First obtain the codepoint at iindex */
r = eina_unicode_utf8_get_next(buf, &ind);
r = eina_unicode_utf8_next_get(buf, &ind);
/* although when ind == 0 there's no previous char, we still want to get
* the current char */
@ -310,7 +310,7 @@ eina_unicode_utf8_get_len(const char *buf)
EINA_SAFETY_ON_NULL_RETURN_VAL(buf, 0);
while (eina_unicode_utf8_get_next(buf, &i))
while (eina_unicode_utf8_next_get(buf, &i))
len++;
return len;
@ -334,7 +334,7 @@ eina_unicode_utf8_to_unicode(const char *utf, int *_len)
for (i = 0, ind = 0, uind = buf ; i < len ; i++, uind++)
{
*uind = eina_unicode_utf8_get_next(utf, &ind);
*uind = eina_unicode_utf8_next_get(utf, &ind);
}
return buf;

View File

@ -1678,7 +1678,7 @@ evas_string_char_next_get(const char *str, int pos, int *decoded)
return 0;
}
p = pos;
d = eina_unicode_utf8_get_next(str, &p);
d = eina_unicode_utf8_next_get(str, &p);
if (decoded) *decoded = d;
return p;
}