Re: [evolution-patches] patch for bug #62377 (reply attribution string)
- From: Not Zed <notzed ximian com>
- To: Jeffrey Stedfast <fejj ximian com>
- Cc: evolution-patches ximian com
- Subject: Re: [evolution-patches] patch for bug #62377 (reply attribution string)
- Date: Wed, 04 Aug 2004 10:50:52 +0800
looks good.
On Tue, 2004-08-03 at 15:06 -0400, Jeffrey Stedfast wrote:
http://bugzilla.ximian.com/show_bug.cgi?id=62377
simple fix.
Jeff
text/plain attachment (62377.patch)
|
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/mail/ChangeLog,v
retrieving revision 1.3427
diff -u -r1.3427 ChangeLog
--- ChangeLog 3 Aug 2004 19:02:21 -0000 1.3427
+++ ChangeLog 3 Aug 2004 19:04:48 -0000
@@ -1,3 +1,13 @@
+2004-08-03 Jeffrey Stedfast <fejj novell com>
+
+ * em-composer-utils.c (format_sender): If type="{Sender}" and name
+ is an empty string, use the addr. Fixes bug #62377
+
+2004-07-15 Jeffrey Stedfast <fejj novell com>
+
+ * em-format-html-display.c (efhd_bonobo_object): If the part is a
+ text part, do charset conversion.
+
2004-08-01 JP Rosevear <jpr novell com>
* default/C/Inbox: Update to just call us "Evolution" and be more
Index: em-composer-utils.c
===================================================================
RCS file: /cvs/gnome/evolution/mail/em-composer-utils.c,v
retrieving revision 1.20
diff -u -r1.20 em-composer-utils.c
--- em-composer-utils.c 28 Jul 2004 14:38:50 -0000 1.20
+++ em-composer-utils.c 3 Aug 2004 19:04:48 -0000
@@ -1506,7 +1506,7 @@
g_string_append (str, name);
} else if (addr && !strcmp (attr, "{SenderEMail}")) {
g_string_append (str, addr);
- } else if (name) {
+ } else if (name && *name) {
g_string_append (str, name);
} else if (addr) {
g_string_append (str, addr);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]