From cceb3566645cfe7dcc56784e80c9f52b357f898a Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Mon, 9 Aug 2004 16:47:03 +0000 Subject: We must return TRUE here so that things actually get removed from the list 2004-08-09 Rodney Dawes * 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 --- e-util/ChangeLog | 5 +++++ e-util/e-icon-factory.c | 2 ++ 2 files changed, 7 insertions(+) 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 + + * 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 * 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 -- cgit