diff options
author | Michael Meeks <michael@helixcode.com> | 2000-10-03 07:30:03 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-10-03 07:30:03 +0800 |
commit | afc127193137188d4efc11194698a2b22f138f75 (patch) | |
tree | 3528c5976286514381b6ab6e7eefe3c837f1f955 /shell/e-shell-view-menu.c | |
parent | ed3681564ca93350b6c99e393376319a35abefde (diff) | |
download | gsoc2013-evolution-afc127193137188d4efc11194698a2b22f138f75.tar.gz gsoc2013-evolution-afc127193137188d4efc11194698a2b22f138f75.tar.zst gsoc2013-evolution-afc127193137188d4efc11194698a2b22f138f75.zip |
kill.
2000-10-03 Michael Meeks <michael@helixcode.com>
* e-shell-view.c (setup_bonobo_ui_handler): kill.
* e-shell-view-menu.c (e_shell_view_menu_setup): strip
out the XML UI merge; move it to
* e-shell-view.c (e_shell_view_construct): here, +
freeze / thaw pair.
* e-shell-view.c (setup_progress_bar): impl.
(setup_widgets): hook in.
(progress_bar_timeout_cb): fix.
(start_progress_bar): fix.
(stop_progress_bar): fix.
(e_shell_view_construct): setup ui handler first.
2000-09-22 Michael Meeks <michael@helixcode.com>
* e-shell-view-menu.c (e_shell_view_menu_setup): upd.
+ upd ChangeLogs
svn path=/trunk/; revision=5678
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 13ec5c4cb8..2779cc94f7 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -446,7 +446,6 @@ void e_shell_view_menu_setup (EShellView *shell_view) { BonoboUIHandler *uih; - Bonobo_UIContainer container; BonoboUIComponent *component; g_return_if_fail (shell_view != NULL); @@ -465,15 +464,6 @@ e_shell_view_menu_setup (EShellView *shell_view) bonobo_ui_component_add_verb_list_with_data ( component, help_verbs, shell_view); - container = bonobo_ui_compat_get_container (uih); - g_return_if_fail (container != CORBA_OBJECT_NIL); - - bonobo_ui_container_freeze (container, NULL); - - bonobo_ui_util_set_ui (component, container, - EVOLUTION_DATADIR, "evolution.xml", - "evolution"); - menu_do_misc (component, shell_view); gtk_signal_connect (GTK_OBJECT (shell_view), "shortcut_bar_mode_changed", @@ -488,6 +478,4 @@ e_shell_view_menu_setup (EShellView *shell_view) FOLDER_BAR_TOGGLE_PATH); shortcut_bar_mode_changed_cb (shell_view, e_shell_view_get_shortcut_bar_mode (shell_view), SHORTCUT_BAR_TOGGLE_PATH); - - bonobo_ui_container_thaw (container, NULL); } |