diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-05-14 00:11:26 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-05-14 00:11:26 +0800 |
commit | 990d1ba48a42ca1888a19844b9f9daa34f4e619b (patch) | |
tree | 8eb0358eebec5c38b692f067e57fde697c9643f7 /widgets/menus | |
parent | 65fee07a39cb41746ad45c77e7daf631f6d0a47f (diff) | |
download | gsoc2013-evolution-990d1ba48a42ca1888a19844b9f9daa34f4e619b.tar.gz gsoc2013-evolution-990d1ba48a42ca1888a19844b9f9daa34f4e619b.tar.zst gsoc2013-evolution-990d1ba48a42ca1888a19844b9f9daa34f4e619b.zip |
(gal_view_menus_unmerge): Guard against
the BonoboUIComponent not having a container to prevent a warning.
svn path=/trunk/; revision=21155
Diffstat (limited to 'widgets/menus')
-rw-r--r-- | widgets/menus/gal-view-menus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/widgets/menus/gal-view-menus.c b/widgets/menus/gal-view-menus.c index 39f4db3366..738c8b89be 100644 --- a/widgets/menus/gal-view-menus.c +++ b/widgets/menus/gal-view-menus.c @@ -483,7 +483,8 @@ gal_view_menus_unmerge (GalViewMenus *gvm, CORBA_Environment *opt_ev) { d(g_print ("%s:\n", G_GNUC_FUNCTION)); - if (bonobo_ui_component_path_exists (gvm->priv->component, CURRENT_VIEW_PATH, opt_ev)) { + if (bonobo_ui_component_get_container (gvm->priv->component) != NULL + && bonobo_ui_component_path_exists (gvm->priv->component, CURRENT_VIEW_PATH, opt_ev)) { d(g_print ("%s: Removing path\n", G_GNUC_FUNCTION)); bonobo_ui_component_rm (gvm->priv->component, CURRENT_VIEW_PATH, opt_ev); } |