diff options
author | Milan Crha <mcrha@redhat.com> | 2008-03-13 18:12:49 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-03-13 18:12:49 +0800 |
commit | 9bd177927d423b36a7506af4b23f5b5feccc5705 (patch) | |
tree | d54f4f15fb0e733a517dd08f3045c163cab0f55a /mail/em-utils.h | |
parent | cc692562f528115284d338dea12f8809d1efd17f (diff) | |
download | gsoc2013-evolution-9bd177927d423b36a7506af4b23f5b5feccc5705.tar.gz gsoc2013-evolution-9bd177927d423b36a7506af4b23f5b5feccc5705.tar.zst gsoc2013-evolution-9bd177927d423b36a7506af4b23f5b5feccc5705.zip |
** Fix for bug #273177
2008-03-13 Milan Crha <mcrha@redhat.com>
** Fix for bug #273177
* addressbook/gui/contact-editor/e-contact-quick-add.h:
(e_contact_quick_add_vcard):
* addressbook/gui/contact-editor/e-contact-quick-add.c: (struct _QuickAdd),
(quick_add_unref), (quick_add_set_vcard), (clicked_cb),
(build_quick_add_dialog), (e_contact_quick_add_vcard):
Allow adding also whole vCard with this dialog.
* addressbook/gui/widgets/eab-popup-control.h: (struct _EABPopupControl):
* addressbook/gui/widgets/eab-popup-control.c: (eab_popup_control_set_vcard),
(eab_popup_control_cleanup), (eab_popup_control_set_vcard),
(eab_popup_control_no_matches), (set_prop), (get_prop),
(eab_popup_control_new):
New property 'vcard', if set, has higher precedence than name/email.
* mail/em-utils.h: (em_utils_add_vcard):
* mail/em-utils.c: (emu_add_address_or_vcard),
(em_utils_add_address), (em_utils_add_vcard):
New function to add whole vCard to addressbook.
* mail/em-popup.c: (emp_add_vcard), (emp_standard_menu_factory):
Add popup menu item to vcard attachments.
svn path=/trunk/; revision=35181
Diffstat (limited to 'mail/em-utils.h')
-rw-r--r-- | mail/em-utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-utils.h b/mail/em-utils.h index 587e2c18b7..2b8fae822c 100644 --- a/mail/em-utils.h +++ b/mail/em-utils.h @@ -61,6 +61,7 @@ gboolean em_utils_save_part_to_file(struct _GtkWidget *parent, const char *filen void em_utils_save_messages (struct _GtkWidget *parent, struct _CamelFolder *folder, GPtrArray *uids); void em_utils_add_address(struct _GtkWidget *parent, const char *email); +void em_utils_add_vcard(struct _GtkWidget *parent, const char *vcard); void em_utils_flag_for_followup (struct _GtkWidget *parent, struct _CamelFolder *folder, GPtrArray *uids); void em_utils_flag_for_followup_clear (struct _GtkWidget *parent, struct _CamelFolder *folder, GPtrArray *uids); |