aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-02-25 23:43:53 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-02-25 23:50:10 +0800
commiteac634e5149950675951c12d795a638f212914ea (patch)
tree45d69fccfc95cd1d1de696e7b8ba28c5915a3526
parent3e55a228cc021072c02a3be62bea162dddf2c3bd (diff)
downloadgsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar
gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.gz
gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.bz2
gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.lz
gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.xz
gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.tar.zst
gsoc2013-evolution-eac634e5149950675951c12d795a638f212914ea.zip
ECalShellSidebar: Remove "loading" status message.
Emitting a "client-added" signal should not trigger any blocking calls, so the "loading" status message will flash by too quickly to be noticed, if it gets drawn at all. Just remove it.
-rw-r--r--modules/calendar/e-cal-shell-sidebar.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/calendar/e-cal-shell-sidebar.c b/modules/calendar/e-cal-shell-sidebar.c
index 544197e9d9..ad5327f34e 100644
--- a/modules/calendar/e-cal-shell-sidebar.c
+++ b/modules/calendar/e-cal-shell-sidebar.c
@@ -833,7 +833,6 @@ e_cal_shell_sidebar_add_client (ECalShellSidebar *cal_shell_sidebar,
{
ESource *source;
ESourceSelector *selector;
- const gchar *message;
g_return_if_fail (E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar));
g_return_if_fail (E_IS_CAL_CLIENT (client));
@@ -843,10 +842,7 @@ e_cal_shell_sidebar_add_client (ECalShellSidebar *cal_shell_sidebar,
selector = e_cal_shell_sidebar_get_selector (cal_shell_sidebar);
e_source_selector_select_source (selector, source);
- message = _("Loading calendars");
- cal_shell_sidebar_emit_status_message (cal_shell_sidebar, message);
cal_shell_sidebar_emit_client_added (cal_shell_sidebar, client);
- cal_shell_sidebar_emit_status_message (cal_shell_sidebar, NULL);
}
void