diff options
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/evolution-shell-component.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 0f57b511f2..77bf3e66dd 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,12 @@ 2000-07-21 Ettore Perazzoli <ettore@helixcode.com> + * evolution-shell-component.c + (impl_ShellComponent_populate_folder_context_menu): If the pointer + to the function to populate the folder context menu is NULL, don't + do anything. + +2000-07-21 Ettore Perazzoli <ettore@helixcode.com> + * e-storage-set-view.c (popup_folder_menu): New. Create a BonoboUIHandler-managed pop-up menu, let the component fill it in with `::populate_folder_context_menu', and display it. Then diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index c3560b2776..e5d2d9edda 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -280,6 +280,9 @@ impl_ShellComponent_populate_folder_context_menu (PortableServer_Servant servant shell_component = EVOLUTION_SHELL_COMPONENT (bonobo_object); priv = shell_component->priv; + if (priv->populate_folder_context_menu_fn == NULL) + return; + uih = bonobo_ui_handler_new (); bonobo_ui_handler_set_container (uih, corba_uih); |