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/gui/widgets/e-minicard.c | |
parent | c93a2e37f54523d409556426d4179761c8838b9f (diff) | |
download | gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar.gz gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar.bz2 gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar.lz gsoc2013-evolution-128425f45d977b583a0340043a56c2b8dd08f925.tar.xz 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/gui/widgets/e-minicard.c')
-rw-r--r-- | addressbook/gui/widgets/e-minicard.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/addressbook/gui/widgets/e-minicard.c b/addressbook/gui/widgets/e-minicard.c index addb019510..1b6138c87c 100644 --- a/addressbook/gui/widgets/e-minicard.c +++ b/addressbook/gui/widgets/e-minicard.c @@ -502,9 +502,9 @@ remodel( EMinicard *e_minicard ) if (address_list) { for (iterator = e_card_list_get_iterator(address_list); e_card_iterator_is_valid(iterator); e_card_iterator_next(iterator)) { const ECardDeliveryAddress *address = e_card_iterator_get(iterator); - if (address->flags & ADDR_WORK) { + if (address->flags & E_CARD_ADDR_WORK) { add_field(e_minicard, "Work Address:", address->city); - } else if (address->flags & ADDR_HOME) { + } else if (address->flags & E_CARD_ADDR_HOME) { add_field(e_minicard, "Home Address:", address->city); } else { add_field(e_minicard, "Address:", address->city); |