diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-10 17:13:52 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-10 17:13:52 +0800 |
commit | 0ea43e6ee7850544108ba347958f99cd67602933 (patch) | |
tree | 1b103a87b78f3872580fd29574f7287d2f3d823f /shell/evolution-shell-component.c | |
parent | 79265bbca3ba043df0a735ff6eab1ace879b7a08 (diff) | |
download | gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.tar gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.tar.gz gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.tar.bz2 gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.tar.lz gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.tar.xz gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.tar.zst gsoc2013-evolution-0ea43e6ee7850544108ba347958f99cd67602933.zip |
`#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
Diffstat (limited to 'shell/evolution-shell-component.c')
-rw-r--r-- | shell/evolution-shell-component.c | 5 |
1 files changed, 3 insertions, 2 deletions
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); |