From fa8549b52d2f372deb44c3efc3a489e2c8a214c3 Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Fri, 15 Nov 2002 19:41:43 +0000 Subject: (impl_finalize): Fix typo; p -> sp. svn path=/trunk/; revision=18783 --- shell/ChangeLog | 4 ++++ shell/evolution-storage.c | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'shell') diff --git a/shell/ChangeLog b/shell/ChangeLog index 5b63e98882..d0fdf4e641 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,7 @@ +2002-11-15 Ettore Perazzoli + + * evolution-storage.c (impl_finalize): Fix typo; p -> sp. + 2002-11-15 Ettore Perazzoli * e-activity-handler.c (impl_operationStarted): No need to check diff --git a/shell/evolution-storage.c b/shell/evolution-storage.c index fc5bb05fcd..9722e5aa28 100644 --- a/shell/evolution-storage.c +++ b/shell/evolution-storage.c @@ -644,7 +644,6 @@ impl_finalize (GObject *object) { EvolutionStorage *storage; EvolutionStoragePrivate *priv; - GList *p; GSList *sp; storage = EVOLUTION_STORAGE (object); @@ -658,10 +657,10 @@ impl_finalize (GObject *object) g_hash_table_destroy (priv->uri_to_path); } - for (sp = priv->folder_property_items; p != NULL; p = p->next) { + for (sp = priv->folder_property_items; sp != NULL; sp = sp->next) { FolderPropertyItem *item; - item = (FolderPropertyItem *) p->data; + item = (FolderPropertyItem *) sp->data; g_free (item->label); g_free (item->tooltip); -- cgit v1.2.3