aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-corba-storage-registry.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2002-03-07 07:33:35 +0800
committerDan Winship <danw@src.gnome.org>2002-03-07 07:33:35 +0800
commita3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc (patch)
tree8f53dd050288a3f5e814e4ac0de60cc30f9a3359 /shell/e-corba-storage-registry.c
parent7324c70f4166344bf5dc071c3bc8bf3f76ded086 (diff)
downloadgsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.tar
gsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.tar.gz
gsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.tar.bz2
gsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.tar.lz
gsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.tar.xz
gsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.tar.zst
gsoc2013-evolution-a3dfdc714c2d3b4663c1d7f2b07daf6e8a8940dc.zip
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
Diffstat (limited to 'shell/e-corba-storage-registry.c')
-rw-r--r--shell/e-corba-storage-registry.c4
1 files changed, 2 insertions, 2 deletions
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);
}