aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-view-menu.c
diff options
context:
space:
mode:
authorArturo Espinosa <unammx@src.gnome.org>2000-01-26 08:04:16 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-26 08:04:16 +0800
commit9f31ce86ff0ac0c7997e977647339ffb2db0fd63 (patch)
tree36a8cf18685d0aae7a37169c72f57b53e44f94f0 /shell/e-shell-view-menu.c
parent490b4ff6ec666a14e4f4bf0431aa7aa15b452366 (diff)
downloadgsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.tar
gsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.tar.gz
gsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.tar.bz2
gsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.tar.lz
gsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.tar.xz
gsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.tar.zst
gsoc2013-evolution-9f31ce86ff0ac0c7997e977647339ffb2db0fd63.zip
Make Evolution compile with the latest Bonobo changes.
Make Evolution compile with the latest Bonobo changes. Miguel. svn path=/trunk/; revision=1636
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r--shell/e-shell-view-menu.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c
index 41129ec5f3..8e8231d774 100644
--- a/shell/e-shell-view-menu.c
+++ b/shell/e-shell-view-menu.c
@@ -215,13 +215,13 @@ static GnomeUIInfo esv_menu [] = {
void
e_shell_view_setup_menus (EShellView *eshell_view)
{
- GnomeUIHandlerMenuItem *list;
+ BonoboUIHandlerMenuItem *list;
- eshell_view->uih = gnome_ui_handler_new ();
- gnome_ui_handler_set_app (eshell_view->uih, GNOME_APP (eshell_view));
- gnome_ui_handler_create_menubar (eshell_view->uih);
+ eshell_view->uih = bonobo_ui_handler_new ();
+ bonobo_ui_handler_set_app (eshell_view->uih, GNOME_APP (eshell_view));
+ bonobo_ui_handler_create_menubar (eshell_view->uih);
- list = gnome_ui_handler_menu_parse_uiinfo_list_with_data (esv_menu, eshell_view);
- gnome_ui_handler_menu_add_list (eshell_view->uih, "/", list);
- gnome_ui_handler_menu_free_list (list);
+ list = bonobo_ui_handler_menu_parse_uiinfo_list_with_data (esv_menu, eshell_view);
+ bonobo_ui_handler_menu_add_list (eshell_view->uih, "/", list);
+ bonobo_ui_handler_menu_free_list (list);
}