diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-10 17:05:50 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2010-03-15 16:28:42 +0800 |
commit | 10de86b4bf55d1b624adbb867854bb61df04fb19 (patch) | |
tree | 43344417aaa9947a47fc2fb43f5d5f55ee297ec0 /libempathy-gtk/empathy-contact-dialogs.c | |
parent | d00ccf5d7f5da998dbcedcb6f420630e347cfe96 (diff) | |
download | gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.tar gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.tar.gz gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.tar.bz2 gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.tar.lz gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.tar.xz gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.tar.zst gsoc2013-empathy-10de86b4bf55d1b624adbb867854bb61df04fb19.zip |
add 'favorite' checkbox to the edit dialog
Diffstat (limited to 'libempathy-gtk/empathy-contact-dialogs.c')
-rw-r--r-- | libempathy-gtk/empathy-contact-dialogs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-dialogs.c b/libempathy-gtk/empathy-contact-dialogs.c index 52e43e163..fed8d04cb 100644 --- a/libempathy-gtk/empathy-contact-dialogs.c +++ b/libempathy-gtk/empathy-contact-dialogs.c @@ -261,7 +261,8 @@ empathy_contact_edit_dialog_show (EmpathyContact *contact, /* Contact info widget */ contact_widget = empathy_contact_widget_new (contact, EMPATHY_CONTACT_WIDGET_EDIT_ALIAS | - EMPATHY_CONTACT_WIDGET_EDIT_GROUPS); + EMPATHY_CONTACT_WIDGET_EDIT_GROUPS | + EMPATHY_CONTACT_WIDGET_EDIT_FAVOURITE); gtk_container_set_border_width (GTK_CONTAINER (contact_widget), 8); gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))), contact_widget, |