diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-26 20:50:17 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-26 20:50:17 +0800 |
commit | 128425f45d977b583a0340043a56c2b8dd08f925 (patch) | |
tree | d6e370950b2fdeac36a966bef92d3728685ada74 /addressbook/backend/ebook/e-card.c | |
parent | c93a2e37f54523d409556426d4179761c8838b9f (diff) | |
download | gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar.gz gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar.zst gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.zip |
Prefixed the ADDR_ flags.
2000-04-26 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card-types.h, backend/ebook/e-card.c,
gui/minicard/e-minicard.c: Prefixed the ADDR_ flags.
* contact-editor/contact-editor.glade,
contact-editor/e-contact-editor-strings.h: Edited the glade file.
Removed all the fields that we don't use.
* contact-editor/e-contact-editor.c,
contact-editor/e-contact-editor.h: Made the phone fields work
properly. The address and email fields are temporarily turned off
until they can be made to work as the phone fields do.
svn path=/trunk/; revision=2625
Diffstat (limited to 'addressbook/backend/ebook/e-card.c')
-rw-r--r-- | addressbook/backend/ebook/e-card.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c index 683c4add13..23c9df5d36 100644 --- a/addressbook/backend/ebook/e-card.c +++ b/addressbook/backend/ebook/e-card.c @@ -2580,12 +2580,12 @@ get_address_flags (VObject *vobj) char *id; ECardAddressFlags flag; } addr_pairs[] = { - { VCDomesticProp, ADDR_DOM }, - { VCInternationalProp, ADDR_INTL }, - { VCPostalProp, ADDR_POSTAL }, - { VCParcelProp, ADDR_PARCEL }, - { VCHomeProp, ADDR_HOME }, - { VCWorkProp, ADDR_WORK }, + { VCDomesticProp, E_CARD_ADDR_DOM }, + { VCInternationalProp, E_CARD_ADDR_INTL }, + { VCPostalProp, E_CARD_ADDR_POSTAL }, + { VCParcelProp, E_CARD_ADDR_PARCEL }, + { VCHomeProp, E_CARD_ADDR_HOME }, + { VCWorkProp, E_CARD_ADDR_WORK }, }; for (i = 0; i < sizeof(addr_pairs) / sizeof(addr_pairs[0]); i++) { @@ -2606,12 +2606,12 @@ set_address_flags (VObject *vobj, ECardAddressFlags flags) char *id; ECardAddressFlags flag; } addr_pairs[] = { - { VCDomesticProp, ADDR_DOM }, - { VCInternationalProp, ADDR_INTL }, - { VCPostalProp, ADDR_POSTAL }, - { VCParcelProp, ADDR_PARCEL }, - { VCHomeProp, ADDR_HOME }, - { VCWorkProp, ADDR_WORK }, + { VCDomesticProp, E_CARD_ADDR_DOM }, + { VCInternationalProp, E_CARD_ADDR_INTL }, + { VCPostalProp, E_CARD_ADDR_POSTAL }, + { VCParcelProp, E_CARD_ADDR_PARCEL }, + { VCHomeProp, E_CARD_ADDR_HOME }, + { VCWorkProp, E_CARD_ADDR_WORK }, }; for (i = 0; i < sizeof(addr_pairs) / sizeof(addr_pairs[0]); i++) { |