From 5a8d47207061f70c4dc0ce6c77d12ea241644133 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Mon, 5 Feb 2001 15:57:15 +0000 Subject: Make the Note field be quoted printable. 2001-02-05 Christopher James Lahey * backend/ebook/e-card.c (e_card_get_vcard): Make the Note field be quoted printable. 2001-01-27 Christopher James Lahey * gui/search/e-addressbook-search-dialog.c (e_addressbook_search_dialog_init): This should be a close button, not a cancel button. svn path=/trunk/; revision=7971 --- addressbook/backend/ebook/e-card.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'addressbook/backend') diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c index b48d2d44f7..b282d520fa 100644 --- a/addressbook/backend/ebook/e-card.c +++ b/addressbook/backend/ebook/e-card.c @@ -411,8 +411,12 @@ char if (card->fburl) addPropValue(vobj, "FBURL", card->fburl); - if (card->note) - addPropValue(vobj, VCNoteProp, card->note); + if (card->note) { + VObject *noteprop; + + noteprop = addPropValue(vobj, VCNoteProp, card->note); + addProp(noteprop, VCQuotedPrintableProp); + } if (card->categories) { EIterator *iterator; -- cgit