diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-27 05:47:51 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-27 05:47:51 +0800 |
commit | d24747d1b54305bbad38b0845e3d05a5401ed781 (patch) | |
tree | 96ee557267223b9ddc304201ab98ced5b1fc3886 /addressbook/backend/ebook/e-card.h | |
parent | 2a6a191e0501a677fbac59304b6bc375e221e3ec (diff) | |
download | gsoc2013-evolution-d24747d1b54305bbad38b0845e3d05a5401ed781.tar.gz gsoc2013-evolution-d24747d1b54305bbad38b0845e3d05a5401ed781.tar.zst gsoc2013-evolution-d24747d1b54305bbad38b0845e3d05a5401ed781.zip |
Added an address label field.
2000-04-26 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card-types.h, backend/ebook/e-card.c,
backend/ebook/e-card.h: Added an address label field.
* contact-editor/contact-editor.glade,
contact-editor/e-contact-editor-strings.h: Got rid of some unused
fields.
* contact-editor/e-contact-editor.c,
contact-editor/e-contact-editor.h: Added the address label field.
Load only. Editing these fields seems to mess things up.
svn path=/trunk/; revision=2646
Diffstat (limited to 'addressbook/backend/ebook/e-card.h')
-rw-r--r-- | addressbook/backend/ebook/e-card.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/addressbook/backend/ebook/e-card.h b/addressbook/backend/ebook/e-card.h index b10585c4a8..774c327371 100644 --- a/addressbook/backend/ebook/e-card.h +++ b/addressbook/backend/ebook/e-card.h @@ -34,10 +34,9 @@ struct _ECard { char *fname; /* The full name. */ ECardName *name; /* The structured name. */ ECardList *address; /* Delivery addresses (ECardDeliveryAddress *) */ -#if 0 - GList *del_labels; /* Delivery address labels + ECardList *address_label; /* Delivery address labels * (ECardAddrLabel *) */ -#endif + ECardList *phone; /* Phone numbers (ECardPhone *) */ ECardList *email; /* Email addresses (char *) */ char *url; /* The person's web page. */ @@ -106,6 +105,8 @@ void e_card_phone_free (ECardPhone *phone); ECardPhone *e_card_phone_copy (const ECardPhone *phone); void e_card_delivery_address_free (ECardDeliveryAddress *addr); ECardDeliveryAddress *e_card_delivery_address_copy (const ECardDeliveryAddress *addr); +void e_card_address_label_free (ECardAddrLabel *addr); +ECardAddrLabel *e_card_address_label_copy (const ECardAddrLabel *addr); /* Standard Gtk function */ |