diff options
-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 |