aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2003-04-28 18:14:13 +0800
committerChris Toshok <toshok@src.gnome.org>2003-04-28 18:14:13 +0800
commitaceae3820a5f3e1111a430db5c80aad404d3244a (patch)
treeb5a8c3e16a1472f5ee506afd73c54d57986cd0bc
parenta3a311f7029f00d963364d66ad887b3f7793b235 (diff)
downloadgsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.tar
gsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.tar.gz
gsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.tar.bz2
gsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.tar.lz
gsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.tar.xz
gsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.tar.zst
gsoc2013-evolution-aceae3820a5f3e1111a430db5c80aad404d3244a.zip
[ fixes bug #41843] use e_card_simple_get_ecard_field instead of
2003-04-28 Chris Toshok <toshok@ximian.com> [ fixes bug #41843] * tools/evolution-addressbook-export-list-cards.c (e_card_simple_csv_get_name): use e_card_simple_get_ecard_field instead of e_card_simple_get_name, so the return value won't be localized. svn path=/trunk/; revision=20978
-rw-r--r--addressbook/ChangeLog8
-rw-r--r--addressbook/tools/evolution-addressbook-export-list-cards.c2
2 files changed, 9 insertions, 1 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index 1969926b2f..25748e191c 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,5 +1,13 @@
2003-04-28 Chris Toshok <toshok@ximian.com>
+ [ fixes bug #41843]
+ * tools/evolution-addressbook-export-list-cards.c
+ (e_card_simple_csv_get_name): use e_card_simple_get_ecard_field
+ instead of e_card_simple_get_name, so the return value won't be
+ localized.
+
+2003-04-28 Chris Toshok <toshok@ximian.com>
+
[ fixes bug #41779 ]
* gui/component/e-address-popup.c (mini_wizard_container_add): we
don't need to call gtk_widget_destroy on the old child, since
diff --git a/addressbook/tools/evolution-addressbook-export-list-cards.c b/addressbook/tools/evolution-addressbook-export-list-cards.c
index 5569dea1f3..e004f8135d 100644
--- a/addressbook/tools/evolution-addressbook-export-list-cards.c
+++ b/addressbook/tools/evolution-addressbook-export-list-cards.c
@@ -296,7 +296,7 @@ e_card_simple_csv_get_name (ECardSimpleFieldCSV csv_field)
if (simple_field != NOMAP) {
a_simple_card = E_CARD_SIMPLE (g_object_new (E_TYPE_CARD_SIMPLE, NULL));
- name = g_strdup (e_card_simple_get_name (a_simple_card, simple_field));
+ name = g_strdup (e_card_simple_get_ecard_field (a_simple_card, simple_field));
g_object_unref (G_OBJECT (a_simple_card));
} else {
name = g_strdup (csv_field_data[csv_field].csv_name);