diff options
author | Claudio Saavedra <csaavedra@igalia.com> | 2010-04-23 13:06:36 +0300 |
---|---|---|
committer | Claudio Saavedra <csaavedra@igalia.com> | 2010-04-26 15:07:55 +0300 |
commit | f63304dc13f51a282a48e793a0795866a0dd353c (patch) | |
tree | b462840d409ebe6d78f4f57e7d510503c4235d7d | |
parent | 5001512ad862bf22bda2deb9729bba3aa0f1c27e (diff) |
Remove unneeded variable
-rw-r--r-- | hildon/hildon-helper.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hildon/hildon-helper.c b/hildon/hildon-helper.c index 4fb1033..6431e02 100644 --- a/hildon/hildon-helper.c +++ b/hildon/hildon-helper.c @@ -602,13 +602,11 @@ e_util_unicode_get_utf8 (const gchar *text, gunichar *out) static const gchar * get_next (const gchar *p, gunichar *out, gboolean separators) { - const gchar *q; gunichar utf8; if (separators) { do { - q = p; - p = e_util_unicode_get_utf8 (q, &utf8); + p = e_util_unicode_get_utf8 (p, &utf8); *out = stripped_char (utf8); } while (p && utf8 && !g_unichar_isalnum (*out)); } else { |