diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-09-22 23:49:21 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-09-22 23:49:21 +0800 |
commit | 34766a085cad6e95aef84b82ec6af40d86f0ca52 (patch) | |
tree | 2a505b3d0c62944dde2f2e4bf937102d6aa7a6e4 /addressbook | |
parent | 97502c28df8b4a419b7230c19338b087b161f423 (diff) | |
download | gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.tar gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.tar.gz gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.tar.bz2 gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.tar.lz gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.tar.xz gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.tar.zst gsoc2013-evolution-34766a085cad6e95aef84b82ec6af40d86f0ca52.zip |
Fixed some warnings. Fixed a bug where quoted printable fields were
2000-09-22 Christopher James Lahey <clahey@helixcode.com>
* libversit/vcc.y: Fixed some warnings. Fixed a bug where quoted
printable fields were reading in semi-colons that should have been
field separators.
From addressbook/ChangeLog:
2000-09-22 Christopher James Lahey <clahey@helixcode.com>
* backend/ebook/e-card.c: Made addresses be quoted printable again
so that they will encode properly if they have carriage returns in
them. This is possible now because of a fix in libversit.
svn path=/trunk/; revision=5550
Diffstat (limited to 'addressbook')
-rw-r--r-- | addressbook/ChangeLog | 6 | ||||
-rw-r--r-- | addressbook/backend/ebook/e-card.c | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 30b8213aef..5035203a79 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,5 +1,11 @@ 2000-09-22 Christopher James Lahey <clahey@helixcode.com> + * backend/ebook/e-card.c: Made addresses be quoted printable again + so that they will encode properly if they have carriage returns in + them. This is possible now because of a fix in libversit. + +2000-09-22 Christopher James Lahey <clahey@helixcode.com> + * backend/ebook/e-book-view-listener.c, backend/ebook/e-book-view-listener.h, backend/ebook/e-book-view.c, backend/ebook/e-book-view.h, backend/idl/addressbook.idl, diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c index e18dc681ec..3ffa8368ed 100644 --- a/addressbook/backend/ebook/e-card.c +++ b/addressbook/backend/ebook/e-card.c @@ -301,9 +301,7 @@ char addPropValue(addressprop, VCPostalCodeProp, address->code); if ( address->country ) addPropValue(addressprop, VCCountryNameProp, address->country); -#if 0 addProp(addressprop, VCQuotedPrintableProp); -#endif } gtk_object_unref(GTK_OBJECT(iterator)); } |