diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-09 11:04:47 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-09 11:04:47 +0800 |
commit | 75513364f1db91b894cacb8853d9486e74b45caf (patch) | |
tree | e658f21e6fd1407de3a6b041b41988b2d9b9d447 /addressbook/gui/minicard | |
parent | 2baf1a70830fc9a0a4cd9ef210c92c147490aeb3 (diff) | |
download | gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.tar gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.tar.gz gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.tar.bz2 gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.tar.lz gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.tar.xz gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.tar.zst gsoc2013-evolution-75513364f1db91b894cacb8853d9486e74b45caf.zip |
Made the contact editor load from an ECard.
2000-04-08 Christopher James Lahey <clahey@helixcode.com>
* addressbook/contact-editor/Makefile.am,
addressbook/contact-editor/e-contact-editor.c,
addressbook/contact-editor/e-contact-editor.h,
addressbook/contact-editor/test-editor.c: Made the contact editor
load from an ECard.
* addressbook/backend/ebook/e-card.c,
addressbook/backend/ebook/e-card.h,
addressbook/gui/minicard/e-minicard.c: Added support for the URL
field.
svn path=/trunk/; revision=2349
Diffstat (limited to 'addressbook/gui/minicard')
-rw-r--r-- | addressbook/gui/minicard/e-minicard.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/addressbook/gui/minicard/e-minicard.c b/addressbook/gui/minicard/e-minicard.c index 02c7670df9..12041a0c5f 100644 --- a/addressbook/gui/minicard/e-minicard.c +++ b/addressbook/gui/minicard/e-minicard.c @@ -402,6 +402,7 @@ remodel( EMinicard *e_minicard ) { if (e_minicard->card) { char *fname; + char *url; ECardList *address_list; ECardList *phone_list; ECardList *email_list; @@ -417,11 +418,12 @@ remodel( EMinicard *e_minicard ) e_minicard->fields = NULL; gtk_object_get(GTK_OBJECT(e_minicard->card), - "full_name", &fname, - "address", &address_list, - "phone", &phone_list, - "email", &email_list, - NULL); + "full_name", &fname, + "address", &address_list, + "phone", &phone_list, + "email", &email_list, + "url", &url, + NULL); if (fname) { add_field(e_minicard, "Name:", fname); @@ -465,6 +467,8 @@ remodel( EMinicard *e_minicard ) add_field(e_minicard, "Email:", (char *) e_card_iterator_get(iterator)); } } + if (url) + add_field(e_minicard, "Web page:", url); } } |