diff options
author | Rodney Dawes <dobey@novell.com> | 2004-08-10 00:47:03 +0800 |
---|---|---|
committer | Rodney Dawes <dobey@src.gnome.org> | 2004-08-10 00:47:03 +0800 |
commit | cceb3566645cfe7dcc56784e80c9f52b357f898a (patch) | |
tree | 329b6a7e820d969259eb512c305a7d6d5f71692e | |
parent | 55d077cca4326e3cb1591bb8011992cf71d43cc9 (diff) | |
download | gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.tar gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.tar.gz gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.tar.bz2 gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.tar.lz gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.tar.xz gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.tar.zst gsoc2013-evolution-cceb3566645cfe7dcc56784e80c9f52b357f898a.zip |
We must return TRUE here so that things actually get removed from the list
2004-08-09 Rodney Dawes <dobey@novell.com>
* e-icon-factory.c (icon_foreach_remove): We must return TRUE here
so that things actually get removed from the list
svn path=/trunk/; revision=26857
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-icon-factory.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index c572536554..8f082be051 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2004-08-09 Rodney Dawes <dobey@novell.com> + + * e-icon-factory.c (icon_foreach_remove): We must return TRUE here + so that things actually get removed from the list + 2004-08-05 Rodrigo Moya <rodrigo@novell.com> * e-icon-factory.c (e_icon_factory_init): connect to "changed" diff --git a/e-util/e-icon-factory.c b/e-util/e-icon-factory.c index 3a8e79fa96..82461f0c26 100644 --- a/e-util/e-icon-factory.c +++ b/e-util/e-icon-factory.c @@ -177,6 +177,8 @@ static gboolean icon_foreach_remove (gpointer key, gpointer value, gpointer user_data) { icon_free (value); + + return TRUE; } static void |