From d32ee023e3c6c477943a58e3c83ccae162ab5ae8 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 22 Jan 2013 02:14:07 +0000 Subject: [PATCH] efl: missing deprecated user. SVN revision: 83049 --- src/lib/eina/eina_unicode.c | 6 +++--- src/lib/evas/canvas/evas_object_text.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/eina/eina_unicode.c b/src/lib/eina/eina_unicode.c index f59b3ea027..f8dcc8d30a 100644 --- a/src/lib/eina/eina_unicode.c +++ b/src/lib/eina/eina_unicode.c @@ -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; diff --git a/src/lib/evas/canvas/evas_object_text.c b/src/lib/evas/canvas/evas_object_text.c index c9909ae99e..67ab0c7f2c 100644 --- a/src/lib/evas/canvas/evas_object_text.c +++ b/src/lib/evas/canvas/evas_object_text.c @@ -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; }