From 5237b25e3474d28cb8d3132fab2b3b5c077efc26 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 23 Jan 2013 10:05:53 +0000 Subject: [PATCH] unbreak 1.7 branch compile SPANK SPANK SPANK JIHOOOOOOOOOOOOOOOOOOOOOOOON SVN revision: 83142 --- src/bin/e_int_menus.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/e_int_menus.c b/src/bin/e_int_menus.c index 0d1522471..9deeb3b49 100644 --- a/src/bin/e_int_menus.c +++ b/src/bin/e_int_menus.c @@ -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;