diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-28 18:44:47 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-11-28 18:44:47 +0800 |
commit | bd853be24c211660dc8d6e3ec327533335fe036c (patch) | |
tree | a0de06fd13910f87e96e8b61399a61d2dfe16881 /libempathy-gtk | |
parent | 40a0d90c492b79ffbf3917ed452730fb8650fe09 (diff) | |
download | gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.tar gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.tar.gz gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.tar.bz2 gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.tar.lz gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.tar.xz gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.tar.zst gsoc2013-empathy-bd853be24c211660dc8d6e3ec327533335fe036c.zip |
max_width, max_height and max_size are defined as guint in EmpathyTpContactFactory and telepathy spec.
svn path=/trunk/; revision=1923
Diffstat (limited to 'libempathy-gtk')
-rw-r--r-- | libempathy-gtk/empathy-avatar-chooser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-avatar-chooser.c b/libempathy-gtk/empathy-avatar-chooser.c index 19b4ef8d9..37abd42de 100644 --- a/libempathy-gtk/empathy-avatar-chooser.c +++ b/libempathy-gtk/empathy-avatar-chooser.c @@ -412,7 +412,7 @@ avatar_chooser_maybe_convert_and_scale (EmpathyAvatarChooser *chooser, { EmpathyAvatarChooserPriv *priv = GET_PRIV (chooser); EmpathyTpContactFactory *tp_cf = priv->tp_contact_factory; - gint max_width = 0, max_height = 0, max_size = 0; + guint max_width = 0, max_height = 0, max_size = 0; gchar **mime_types = NULL; gboolean needs_conversion = FALSE; gint width, height; |