aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/backend/ebook/e-card.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2001-02-05 23:57:15 +0800
committerChris Lahey <clahey@src.gnome.org>2001-02-05 23:57:15 +0800
commit5a8d47207061f70c4dc0ce6c77d12ea241644133 (patch)
treee19b6c2385514629f48676cee50ef9c477349aba /addressbook/backend/ebook/e-card.c
parent6c2bb13f676683a4ea59af45bf9d750bb6a84591 (diff)
downloadgsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.tar
gsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.tar.gz
gsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.tar.bz2
gsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.tar.lz
gsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.tar.xz
gsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.tar.zst
gsoc2013-evolution-5a8d47207061f70c4dc0ce6c77d12ea241644133.zip
Make the Note field be quoted printable.
2001-02-05 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/e-card.c (e_card_get_vcard): Make the Note field be quoted printable. 2001-01-27 Christopher James Lahey <clahey@helixcode.com> * 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
Diffstat (limited to 'addressbook/backend/ebook/e-card.c')
-rw-r--r--addressbook/backend/ebook/e-card.c8
1 files changed, 6 insertions, 2 deletions
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;