From a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 6 Mar 2002 23:33:35 +0000 Subject: Fix up GList/GSList confusion. * e-corba-storage-registry.c (impl_StorageRegistry_removeListener): Fix up GList/GSList confusion. * e-shell-user-creatable-items-handler.c (get_default_action_for_view): Don't look into the types list if it's empty. svn path=/trunk/; revision=15954 --- shell/e-corba-storage-registry.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell/e-corba-storage-registry.c') diff --git a/shell/e-corba-storage-registry.c b/shell/e-corba-storage-registry.c index 4451f0751a..f528019f93 100644 --- a/shell/e-corba-storage-registry.c +++ b/shell/e-corba-storage-registry.c @@ -277,7 +277,7 @@ impl_StorageRegistry_removeListener (PortableServer_Servant servant, ECorbaStorageRegistry *storage_registry; ECorbaStorageRegistryPrivate *priv; CORBA_Environment ev2; - GList *p; + GSList *p; bonobo_object = bonobo_object_from_servant (servant); storage_registry = E_CORBA_STORAGE_REGISTRY (bonobo_object); @@ -296,7 +296,7 @@ impl_StorageRegistry_removeListener (PortableServer_Servant servant, CORBA_exception_free (&ev2); priv->listeners = g_slist_remove_link (priv->listeners, p); - g_list_free (p); + g_slist_free (p); } -- cgit v1.2.3