diff options
author | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-07-27 21:16:40 +0800 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-07-30 14:56:45 +0800 |
commit | 9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf (patch) | |
tree | 9a434c1d0375a08a9e5e4defe0e5d6b2c6aa9e74 /libempathy-gtk/empathy-contact-widget.h | |
parent | 4b23cccc6b57759cc17ca493e1153b71f1636c07 (diff) | |
download | gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.tar gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.tar.gz gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.tar.bz2 gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.tar.lz gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.tar.xz gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.tar.zst gsoc2013-empathy-9c9fcb09c9dd2523fc53858d84b44eb19fd1a7bf.zip |
EmpathyContactWidget: Stop using EmpathyAvatarChooser
Changing avatar is only used for editing user's information, and
it will soon be replaced by a dedicated widget.
This is done to make easier to change EmpathyAvatarChooser's API before
introducing the new widget.
https://bugzilla.gnome.org/show_bug.cgi?id=680449
Diffstat (limited to 'libempathy-gtk/empathy-contact-widget.h')
-rw-r--r-- | libempathy-gtk/empathy-contact-widget.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-contact-widget.h b/libempathy-gtk/empathy-contact-widget.h index bf4acaf8e..00423c7ff 100644 --- a/libempathy-gtk/empathy-contact-widget.h +++ b/libempathy-gtk/empathy-contact-widget.h @@ -77,8 +77,6 @@ GType empathy_contact_widget_get_type (void); * information about a contact. * @EMPATHY_CONTACT_WIDGET_EDIT_ALIAS: Show a #GtkEntry allowing changes to the * contact's alias. - * @EMPATHY_CONTACT_WIDGET_EDIT_AVATAR: Show an #EmpathyAvatarChooser allowing - * changes to the contact's avatar. * @EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT: Show an #EmpathyAccountChooser allowing * changes to the contact's account. * @EMPATHY_CONTACT_WIDGET_EDIT_ID: Show a #GtkEntry allowing changes to the @@ -95,7 +93,6 @@ typedef enum { EMPATHY_CONTACT_WIDGET_EDIT_NONE = 0, EMPATHY_CONTACT_WIDGET_EDIT_ALIAS = 1 << 0, - EMPATHY_CONTACT_WIDGET_EDIT_AVATAR = 1 << 1, EMPATHY_CONTACT_WIDGET_EDIT_ACCOUNT = 1 << 2, EMPATHY_CONTACT_WIDGET_EDIT_ID = 1 << 3, EMPATHY_CONTACT_WIDGET_EDIT_GROUPS = 1 << 4, |