diff options
author | Sankar P <psankar@novell.com> | 2006-04-21 16:10:37 +0800 |
---|---|---|
committer | Sankarasivasubramanian Pasupathilingam <psankar@src.gnome.org> | 2006-04-21 16:10:37 +0800 |
commit | 755bbf3a88c3daed0caf3a11cb59d6bb21453728 (patch) | |
tree | 03c13ba5098756593e0e523e758c5c382f844c6a /mail | |
parent | 224dce68f966e21cb18aea388c3f40fc46956fa9 (diff) | |
download | gsoc2013-evolution-755bbf3a88c3daed0caf3a11cb59d6bb21453728.tar.gz gsoc2013-evolution-755bbf3a88c3daed0caf3a11cb59d6bb21453728.tar.zst gsoc2013-evolution-755bbf3a88c3daed0caf3a11cb59d6bb21453728.zip |
Fix the cryptic hexa-status-bar-message. The problem still lies somewhere.
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.
svn path=/trunk/; revision=31849
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); |