aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/modules/e-memo-shell-view-actions.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-10-29 01:30:32 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-10-29 01:30:32 +0800
commit5e82bdba14fba81603f3879a46b46a011db7d2e4 (patch)
tree0a4a475e33b4fbdf4a96249afa777b82903843f6 /calendar/modules/e-memo-shell-view-actions.c
parent17e030e2022b2343c795b7fd524ba9451ca71e9f (diff)
downloadgsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.tar
gsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.tar.gz
gsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.tar.bz2
gsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.tar.lz
gsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.tar.xz
gsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.tar.zst
gsoc2013-evolution-5e82bdba14fba81603f3879a46b46a011db7d2e4.zip
Wire up status messages to include percentages if available.
svn path=/branches/kill-bonobo/; revision=36692
Diffstat (limited to 'calendar/modules/e-memo-shell-view-actions.c')
-rw-r--r--calendar/modules/e-memo-shell-view-actions.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/calendar/modules/e-memo-shell-view-actions.c b/calendar/modules/e-memo-shell-view-actions.c
index d6e9387e31..915f52640e 100644
--- a/calendar/modules/e-memo-shell-view-actions.c
+++ b/calendar/modules/e-memo-shell-view-actions.c
@@ -87,16 +87,15 @@ action_memo_delete_cb (GtkAction *action,
EMemoShellContent *memo_shell_content;
ECalComponentPreview *memo_preview;
EMemoTable *memo_table;
- const gchar *status_message;
memo_shell_content = memo_shell_view->priv->memo_shell_content;
memo_table = e_memo_shell_content_get_memo_table (memo_shell_content);
memo_preview = e_memo_shell_content_get_memo_preview (memo_shell_content);
- status_message = _("Deleting selected memos...");
- e_memo_shell_view_set_status_message (memo_shell_view, status_message);
+ e_memo_shell_view_set_status_message (
+ memo_shell_view, _("Deleting selected memos..."), -1.0);
e_memo_table_delete_selected (memo_table);
- e_memo_shell_view_set_status_message (memo_shell_view, NULL);
+ e_memo_shell_view_set_status_message (memo_shell_view, NULL, -1.0);
e_cal_component_preview_clear (memo_preview);
}