[evolution-data-server] Revert "Convert quoted-printing to UTF-8 when copying from To, CC, or BCC Fields"
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution-data-server] Revert "Convert quoted-printing to UTF-8 when copying from To, CC, or BCC Fields"
- Date: Mon, 28 Feb 2011 12:30:14 +0000 (UTC)
commit 21f6acee2a507d3dbe1e612f0e2e353d651f0d1e
Author: Matthew Barnes <mbarnes redhat com>
Date: Mon Feb 28 07:29:25 2011 -0500
Revert "Convert quoted-printing to UTF-8 when copying from To, CC, or BCC Fields"
This reverts commit 379f195dd9d3712dcc0621a9cd05694cbd1e2b96.
Original commit reintroduces bug #619347.
addressbook/libebook/e-destination.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/addressbook/libebook/e-destination.c b/addressbook/libebook/e-destination.c
index 1becb41..e5aebca 100644
--- a/addressbook/libebook/e-destination.c
+++ b/addressbook/libebook/e-destination.c
@@ -880,10 +880,10 @@ e_destination_get_address (const EDestination *dest)
}
iter = g_list_next (iter);
}
- priv->addr = camel_address_format (CAMEL_ADDRESS (addr));
+ priv->addr = camel_address_encode (CAMEL_ADDRESS (addr));
} else if (priv->raw) {
if (camel_address_unformat (CAMEL_ADDRESS (addr), priv->raw))
- priv->addr = camel_address_format (CAMEL_ADDRESS (addr));
+ priv->addr = camel_address_encode (CAMEL_ADDRESS (addr));
} else {
const gchar *name, *email;
name = e_destination_get_name (dest);
@@ -897,7 +897,7 @@ e_destination_get_address (const EDestination *dest)
nothing we can do here */
camel_address_decode (CAMEL_ADDRESS (addr), name);
- priv->addr = camel_address_format (CAMEL_ADDRESS (addr));
+ priv->addr = camel_address_encode (CAMEL_ADDRESS (addr));
}
g_object_unref (addr);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]