e17: use eina_unicode_utf8_next_get instead of eina_unicode_utf8_get_next

SVN revision: 83141
This commit is contained in:
Jihoon Kim 2013-01-23 10:03:31 +00:00
parent 11beb0649c
commit 10960b39c9
1 changed files with 1 additions and 1 deletions

View File

@ -1394,7 +1394,7 @@ _e_int_menus_clients_title_abbrv(const char *title)
/* Advance to the end of the first half of the string. */
len = 0;
for (len2 = (max_len / 2); len2; len2--)
eina_unicode_utf8_get_next(title, &len);
eina_unicode_utf8_next_get(title, &len);
strncat(abbvptr, title, len);
abbvptr += len;