diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-04-09 09:38:38 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-04-09 09:38:38 +0800 |
commit | 2baf1a70830fc9a0a4cd9ef210c92c147490aeb3 (patch) | |
tree | d436faff5d04ea9047a8411b10b31903ef25edd1 /addressbook/backend/ebook | |
parent | 742e8fab22c1defd3636374bdc77d519783c32c2 (diff) | |
download | gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.tar gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.tar.gz gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.tar.bz2 gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.tar.lz gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.tar.xz gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.tar.zst gsoc2013-evolution-2baf1a70830fc9a0a4cd9ef210c92c147490aeb3.zip |
Fixed a small typo.
2000-04-08 Christopher James Lahey <clahey@helixcode.com>
* addressbook/backend/ebook/e-card.c (e_card_get_vcard): Fixed a
small typo.
svn path=/trunk/; revision=2347
Diffstat (limited to 'addressbook/backend/ebook')
-rw-r--r-- | addressbook/backend/ebook/e-card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c index 0ec6105a95..ea7e2ba373 100644 --- a/addressbook/backend/ebook/e-card.c +++ b/addressbook/backend/ebook/e-card.c @@ -231,7 +231,7 @@ char } if ( card->email ) { - ECardIterator *iterator = e_card_list_get_iterator(card->address); + ECardIterator *iterator = e_card_list_get_iterator(card->email); for ( ; e_card_iterator_is_valid(iterator) ;e_card_iterator_next(iterator) ) { VObject *emailprop; emailprop = addPropValue(vobj, VCEmailAddressProp, (char *) e_card_iterator_get(iterator)); |