diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-02-17 03:00:54 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-02-17 03:00:54 +0800 |
commit | eff516f779f532fb1e0c9899fa9c6de84be8d179 (patch) | |
tree | 5842c653f8a4d09781b9c5345a0813ad8a9fc32b /widgets | |
parent | d73a224db5f16a1abe6fd8ceda5053b3c0ebe120 (diff) | |
download | gsoc2013-evolution-eff516f779f532fb1e0c9899fa9c6de84be8d179.tar.gz gsoc2013-evolution-eff516f779f532fb1e0c9899fa9c6de84be8d179.tar.zst gsoc2013-evolution-eff516f779f532fb1e0c9899fa9c6de84be8d179.zip |
Bug 609042 - Convert quoted-printing to UTF-8 when copying to clipboard
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-web-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/misc/e-web-view.c b/widgets/misc/e-web-view.c index a5f98a4edc..ce41c32d4c 100644 --- a/widgets/misc/e-web-view.c +++ b/widgets/misc/e-web-view.c @@ -289,7 +289,7 @@ action_mailto_copy_cb (GtkAction *action, inet_addr = camel_internet_address_new (); camel_address_decode (CAMEL_ADDRESS (inet_addr), curl->path); - text = camel_address_encode (CAMEL_ADDRESS (inet_addr)); + text = camel_address_format (CAMEL_ADDRESS (inet_addr)); if (text == NULL || *text == '\0') text = g_strdup (uri + strlen ("mailto:")); |