diff options
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 7 | ||||
-rw-r--r-- | mail/mail-mt.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index d11af3dc5e..fb340f1499 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,10 @@ +2006-04-21 Sankar P <psankar@novell.com> + + * mail-mt.c: (do_op_status): + Fix the cryptic hexa-status-bar-message. + The problem still lies somewhere. But dont show + something weird to the user. + 2006-04-20 Jeffrey Stedfast <fejj@novell.com> Fix for bug #339052 diff --git a/mail/mail-mt.c b/mail/mail-mt.c index cd613372b8..f9375bf02b 100644 --- a/mail/mail-mt.c +++ b/mail/mail-mt.c @@ -978,8 +978,8 @@ static void do_op_status(struct _mail_msg *mm) what = msg->ops->describe_msg (msg, FALSE); /* uncommenting because message is not very useful for a user, see bug 271734*/ else { - what = g_strdup_printf("Working %p", msg); - } + what = g_strdup(""); + } data->activity_id = e_activity_handler_operation_started (activity_handler, "evolution-mail", progress_icon, what, TRUE); |