aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-smiley-manager.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2009-11-16 16:27:50 +0800
committerXavier Claessens <xclaesse@gmail.com>2009-11-25 01:29:44 +0800
commit212ea18a107e8ddfda82b3b754a1df2b7db9735f (patch)
tree196cc0639f067e39eee28e5c733b6acf7ef0492d /libempathy-gtk/empathy-smiley-manager.h
parente83c0814113515cdd5a3dc511f7e29cbe51651e8 (diff)
downloadgsoc2013-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-smiley-manager.h')
-rw-r--r--libempathy-gtk/empathy-smiley-manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libempathy-gtk/empathy-smiley-manager.h b/libempathy-gtk/empathy-smiley-manager.h
index f15dbc468..1d6eaac54 100644
--- a/libempathy-gtk/empathy-smiley-manager.h
+++ b/libempathy-gtk/empathy-smiley-manager.h
@@ -55,8 +55,8 @@ typedef struct {
typedef struct {
GdkPixbuf *pixbuf; /* Pixbuf of the smiley */
const gchar *path; /* Filename of the smiley image */
- gint start; /* text[start:end] should be replaced by pixbuf */
- gint end;
+ guint start; /* text[start:end] should be replaced by pixbuf */
+ guint end;
} EmpathySmileyHit;
typedef void (*EmpathySmileyMenuFunc) (EmpathySmileyManager *manager,