aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@src.gnome.org>2000-04-13 15:41:27 +0800
committerChris Toshok <toshok@src.gnome.org>2000-04-13 15:41:27 +0800
commit19673f6972a79bfa7e0db754e53b43a5e8e66906 (patch)
tree7546a81f1a885a2c133a60032117f79088a1b0e3
parent73d50bc3f11de6fe8fa58d2328197c82950b7e79 (diff)
downloadgsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.tar
gsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.tar.gz
gsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.tar.bz2
gsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.tar.lz
gsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.tar.xz
gsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.tar.zst
gsoc2013-evolution-19673f6972a79bfa7e0db754e53b43a5e8e66906.zip
save out the title to the vcard.
* addressbook/backend/ebook/e-card.c (e_card_get_vcard): save out the title to the vcard. svn path=/trunk/; revision=2417
-rw-r--r--ChangeLog3
-rw-r--r--addressbook/backend/ebook/e-card.c5
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e464427c92..8d672b66bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2000-04-13 Chris Toshok <toshok@helixcode.com>
+ * addressbook/backend/ebook/e-card.c (e_card_get_vcard): save out
+ the title to the vcard.
+
* addressbook/backend/ebook/test-card.c: add title field foo to
the test.
diff --git a/addressbook/backend/ebook/e-card.c b/addressbook/backend/ebook/e-card.c
index 429e68e832..2bd0e4e7c8 100644
--- a/addressbook/backend/ebook/e-card.c
+++ b/addressbook/backend/ebook/e-card.c
@@ -271,7 +271,10 @@ char
if (card->url)
addPropValue(vobj, VCURLProp, card->url);
-
+
+ if (card->title)
+ addPropValue(vobj, VCTitleProp, card->title);
+
if (card->id)
addPropValue (vobj, VCUniqueStringProp, card->id);