unbreak 1.7 branch compile

SPANK SPANK SPANK JIHOOOOOOOOOOOOOOOOOOOOOOOON


SVN revision: 83142
This commit is contained in:
Mike Blumenkrantz 2013-01-23 10:05:53 +00:00
parent 10960b39c9
commit 5237b25e34
1 changed files with 4 additions and 0 deletions

View File

@ -1394,7 +1394,11 @@ _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--)
#if (EINA_VERSION_MAJOR > 1) || (EINA_VERSION_MINOR >= 8)
eina_unicode_utf8_next_get(title, &len);
#else
eina_unicode_utf8_get_next(title, &len);
#endif
strncat(abbvptr, title, len);
abbvptr += len;