diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-09-04 01:27:31 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-09-04 01:27:31 +0800 |
commit | 643db1689446521b73c589ef61c82c9536f24f46 (patch) | |
tree | 99b64d882e907c5467fed3c94f29dc8c521507f4 /shell/e-shell-view.c | |
parent | d0841e7c2490436c664cfec87099b86d54d4127d (diff) | |
download | gsoc2013-evolution-643db1689446521b73c589ef61c82c9536f24f46.tar.gz gsoc2013-evolution-643db1689446521b73c589ef61c82c9536f24f46.tar.zst gsoc2013-evolution-643db1689446521b73c589ef61c82c9536f24f46.zip |
Get the "save-calendar" plugin working.
Based on initial work by Milan Crha.
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index ff54c59b2f..ccd5de6f31 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -189,31 +189,6 @@ shell_view_state_timeout_cb (EShellView *shell_view) return FALSE; } -static gboolean -shell_view_register_ui_manager (EShellView *shell_view) -{ - EShellViewClass *shell_view_class; - EShellWindow *shell_window; - GtkUIManager *ui_manager; - const gchar *id; - - /* This is a one-time, post-construction idle callback. */ - - shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view); - shell_window = e_shell_view_get_shell_window (shell_view); - ui_manager = e_shell_window_get_ui_manager (shell_window); - id = shell_view_class->ui_manager_id; - - e_plugin_ui_register_manager (ui_manager, id, shell_view); - - if (e_shell_view_is_active (shell_view)) { - e_plugin_ui_enable_manager (ui_manager, id); - e_shell_view_update_actions (shell_view); - } - - return FALSE; -} - static void shell_view_emit_toggled (EShellView *shell_view) { @@ -427,14 +402,6 @@ shell_view_constructed (GObject *object) shell_view = E_SHELL_VIEW (object); shell_view_class = E_SHELL_VIEW_GET_CLASS (shell_view); - /* Defer EPluginUI registration to an idle callback to give the - * shell view subclass a chance to register its own actions and - * action groups. Registration will immediately load EPlugins - * that specify the shell view's GtkUIManager ID, and their - * initialization routines may require those actions or action - * groups that have not yet been added. */ - g_idle_add ((GSourceFunc) shell_view_register_ui_manager, shell_view); - shell_view_load_state (shell_view); /* Invoke factory methods. */ |