diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-02-14 05:55:43 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-02-17 07:57:09 +0800 |
commit | 9714a4bbf1a938871240640002c9dd369133c766 (patch) | |
tree | 99ffa3e5a7cbdb5f672909c62080a8ae5eb8d163 /modules/calendar/e-memo-shell-sidebar.c | |
parent | 9551d47dd1a42d1cce29926957a82238f9514272 (diff) | |
download | gsoc2013-evolution-9714a4bbf1a938871240640002c9dd369133c766.tar.gz gsoc2013-evolution-9714a4bbf1a938871240640002c9dd369133c766.tar.zst gsoc2013-evolution-9714a4bbf1a938871240640002c9dd369133c766.zip |
Defer "backend-died" alerts to EShell.
Diffstat (limited to 'modules/calendar/e-memo-shell-sidebar.c')
-rw-r--r-- | modules/calendar/e-memo-shell-sidebar.c | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/modules/calendar/e-memo-shell-sidebar.c b/modules/calendar/e-memo-shell-sidebar.c index 24e6f841d1..138b78d306 100644 --- a/modules/calendar/e-memo-shell-sidebar.c +++ b/modules/calendar/e-memo-shell-sidebar.c @@ -159,32 +159,19 @@ static void memo_shell_sidebar_backend_died_cb (EMemoShellSidebar *memo_shell_sidebar, ECalClient *client) { - EShellView *shell_view; - EShellContent *shell_content; - EShellSidebar *shell_sidebar; GHashTable *client_table; ESource *source; - const gchar *uid; + gchar *uid; client_table = memo_shell_sidebar->priv->client_table; - shell_sidebar = E_SHELL_SIDEBAR (memo_shell_sidebar); - shell_view = e_shell_sidebar_get_shell_view (shell_sidebar); - shell_content = e_shell_view_get_shell_content (shell_view); - source = e_client_get_source (E_CLIENT (client)); - uid = e_source_get_uid (source); - - g_object_ref (source); + uid = e_source_dup_uid (source); g_hash_table_remove (client_table, uid); memo_shell_sidebar_emit_status_message (memo_shell_sidebar, NULL); - e_alert_submit ( - E_ALERT_SINK (shell_content), - "calendar:memos-crashed", NULL); - - g_object_unref (source); + g_free (uid); } static void |