aboutsummaryrefslogtreecommitdiffstats
path: root/shell/evolution-storage.c
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2002-11-16 03:41:43 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2002-11-16 03:41:43 +0800
commitfa8549b52d2f372deb44c3efc3a489e2c8a214c3 (patch)
tree259d1af4eeb94d8959c937f526bdc22edd97f303 /shell/evolution-storage.c
parent27d6e723fd94ee4ed9d3f9ca8e6095a95a170eda (diff)
downloadgsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.tar
gsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.tar.gz
gsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.tar.bz2
gsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.tar.lz
gsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.tar.xz
gsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.tar.zst
gsoc2013-evolution-fa8549b52d2f372deb44c3efc3a489e2c8a214c3.zip
(impl_finalize): Fix typo; p -> sp.
svn path=/trunk/; revision=18783
Diffstat (limited to 'shell/evolution-storage.c')
-rw-r--r--shell/evolution-storage.c5
1 files changed, 2 insertions, 3 deletions
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);