(impl_finalize): Fix typo; p -> sp.

svn path=/trunk/; revision=18783
This commit is contained in:
Ettore Perazzoli
2002-11-15 19:41:43 +00:00
parent 27d6e723fd
commit fa8549b52d
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-11-15 Ettore Perazzoli <ettore@ximian.com>
* evolution-storage.c (impl_finalize): Fix typo; p -> sp.
2002-11-15 Ettore Perazzoli <ettore@ximian.com>
* e-activity-handler.c (impl_operationStarted): No need to check

View File

@ -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);