diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2009-11-16 16:27:50 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2009-11-25 01:29:44 +0800 |
commit | 212ea18a107e8ddfda82b3b754a1df2b7db9735f (patch) | |
tree | 196cc0639f067e39eee28e5c733b6acf7ef0492d /libempathy-gtk/empathy-chat-text-view.c | |
parent | e83c0814113515cdd5a3dc511f7e29cbe51651e8 (diff) | |
download | gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.tar gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.tar.gz gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.tar.bz2 gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.tar.lz gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.tar.xz gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.tar.zst gsoc2013-empathy-212ea18a107e8ddfda82b3b754a1df2b7db9735f.zip |
start and end positions in EmpathySmileyHit struct can't be negative. Change them to guint.
Diffstat (limited to 'libempathy-gtk/empathy-chat-text-view.c')
-rw-r--r-- | libempathy-gtk/empathy-chat-text-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chat-text-view.c b/libempathy-gtk/empathy-chat-text-view.c index aa8676bfd..6dd8b3094 100644 --- a/libempathy-gtk/empathy-chat-text-view.c +++ b/libempathy-gtk/empathy-chat-text-view.c @@ -1263,7 +1263,7 @@ chat_text_view_insert_text_with_emoticons (EmpathyChatTextView *view, EmpathyChatTextViewPriv *priv = GET_PRIV (view); gboolean use_smileys = FALSE; GSList *hits, *l; - gint last = 0; + guint last = 0; empathy_conf_get_bool (empathy_conf_get (), EMPATHY_PREFS_CHAT_SHOW_SMILEYS, |