[evolution] Bug #610229 - Status bar progress goes beyond 100 percentage
- From: Milan Crha <mcrha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] Bug #610229 - Status bar progress goes beyond 100 percentage
- Date: Tue, 13 Apr 2010 12:27:38 +0000 (UTC)
commit 7e931d4c10c0b0d06c9df571589d003e43790690
Author: punit <jpunit novell com>
Date: Tue Apr 13 14:25:54 2010 +0200
Bug #610229 - Status bar progress goes beyond 100 percentage
e-util/e-activity.c | 2 +-
mail/mail-mt.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/e-util/e-activity.c b/e-util/e-activity.c
index 9f8faf7..f8a3510 100644
--- a/e-util/e-activity.c
+++ b/e-util/e-activity.c
@@ -234,7 +234,7 @@ activity_describe (EActivity *activity)
* complete is known. */
g_string_printf (
string, _("%s (%d%% complete)"), text,
- (gint) (percent * 100.0 + 0.5));
+ (gint) (percent));
}
return g_string_free (string, FALSE);
diff --git a/mail/mail-mt.c b/mail/mail-mt.c
index 0af59cb..de59213 100644
--- a/mail/mail-mt.c
+++ b/mail/mail-mt.c
@@ -937,7 +937,7 @@ op_status_exec (struct _op_status_msg *m)
}
} else if (data->activity != NULL) {
e_activity_set_primary_text (data->activity, out);
- e_activity_set_percent (data->activity, pc / 100.0);
+ e_activity_set_percent (data->activity, pc);
g_mutex_unlock (mail_msg_lock);
} else {
g_mutex_unlock (mail_msg_lock);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]