aboutsummaryrefslogtreecommitdiffstats
path: root/executive-summary/evolution-services/executive-summary-component.c
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2000-12-30 09:34:04 +0800
committerIain Holmes <iain@src.gnome.org>2000-12-30 09:34:04 +0800
commit058a550c571b3e77b0cef25bb287618b630a811e (patch)
tree988bf9949b20812607d950e793ba7eea185589cc /executive-summary/evolution-services/executive-summary-component.c
parentebe0fd91cffde48584020466763c521003ea2d4b (diff)
downloadgsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.tar
gsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.tar.gz
gsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.tar.bz2
gsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.tar.lz
gsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.tar.xz
gsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.tar.zst
gsoc2013-evolution-058a550c571b3e77b0cef25bb287618b630a811e.zip
More bonobo property bag updates and stuff.
svn path=/trunk/; revision=7194
Diffstat (limited to 'executive-summary/evolution-services/executive-summary-component.c')
-rw-r--r--executive-summary/evolution-services/executive-summary-component.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/executive-summary/evolution-services/executive-summary-component.c b/executive-summary/evolution-services/executive-summary-component.c
index 96c50b1acb..d2dab70947 100644
--- a/executive-summary/evolution-services/executive-summary-component.c
+++ b/executive-summary/evolution-services/executive-summary-component.c
@@ -91,17 +91,6 @@ executive_summary_component_destroy (GtkObject *object)
if (priv == NULL)
return;
- CORBA_exception_init (&ev);
-
-#if 0
- if (priv->owner_client != NULL) {
- bonobo_object_unref (BONOBO_OBJECT (priv->owner_client));
- priv->owner_client = NULL;
- }
-#endif
-
- CORBA_exception_free (&ev);
-
g_free (priv);
component->private = NULL;
@@ -230,7 +219,6 @@ impl_GNOME_Evolution_Summary_ComponentFactory_createView (PortableServer_Servant
ExecutiveSummaryComponentFactory *factory;
ExecutiveSummaryComponentFactoryPrivate *priv;
GNOME_Evolution_Summary_Component component, component_dup;
- CORBA_Environment ev2;
bonobo_object = bonobo_object_from_servant (servant);
factory = EXECUTIVE_SUMMARY_COMPONENT_FACTORY (bonobo_object);
@@ -240,9 +228,8 @@ impl_GNOME_Evolution_Summary_ComponentFactory_createView (PortableServer_Servant
g_return_val_if_fail (view != NULL, CORBA_OBJECT_NIL);
component = bonobo_object_corba_objref (BONOBO_OBJECT (view));
- CORBA_exception_init (&ev2);
- component_dup = CORBA_Object_duplicate (component, &ev2);
- CORBA_exception_free (&ev2);
+
+ component_dup = CORBA_Object_duplicate (component, ev);
return component_dup;
}