From 0ea43e6ee7850544108ba347958f99cd67602933 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Fri, 10 Aug 2001 09:13:52 +0000 Subject: `#if 0'ed out. (rename_cb): Likewise. * e-shell-folder-commands.c (rename_clicked): `#if 0'ed out. (rename_cb): Likewise. * evolution-shell-component.c (destroy): Fixed a confusion between GList and GSList. svn path=/trunk/; revision=11876 --- shell/evolution-shell-component.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'shell/evolution-shell-component.c') diff --git a/shell/evolution-shell-component.c b/shell/evolution-shell-component.c index ce49e843d4..a7054564d0 100644 --- a/shell/evolution-shell-component.c +++ b/shell/evolution-shell-component.c @@ -553,6 +553,7 @@ destroy (GtkObject *object) EvolutionShellComponent *shell_component; EvolutionShellComponentPrivate *priv; CORBA_Environment ev; + GSList *sp; GList *p; shell_component = EVOLUTION_SHELL_COMPONENT (object); @@ -582,8 +583,8 @@ destroy (GtkObject *object) e_free_string_list (priv->external_uri_schemas); - for (p = priv->user_creatable_item_types; p != NULL; p = p->next) - user_creatable_item_type_free ((UserCreatableItemType *) p->data); + for (sp = priv->user_creatable_item_types; sp != NULL; sp = sp->next) + user_creatable_item_type_free ((UserCreatableItemType *) sp->data); g_slist_free (priv->user_creatable_item_types); g_free (priv); -- cgit v1.2.3