From ec9e5497c4648a85a8b40edbad73241ee5b5ae9f Mon Sep 17 00:00:00 2001 From: antognolli Date: Tue, 2 Aug 2011 19:41:43 +0000 Subject: [PATCH] Fixing a problem with edje_object_color_class_del. The color class was removed from the list but the edje object was not updated neither the signal was emmited. Patch by: Flavio Ceolin git-svn-id: http://svn.enlightenment.org/svn/e/trunk/edje@62019 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/edje_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/edje_util.c b/src/lib/edje_util.c index 2d63a9c..4094e9e 100644 --- a/src/lib/edje_util.c +++ b/src/lib/edje_util.c @@ -677,7 +677,7 @@ edje_object_color_class_del(Evas_Object *obj, const char *color_class) ed->color_classes = eina_list_remove(ed->color_classes, cc); eina_stringshare_del(cc->name); free(cc); - return; + break; } } -- 2.7.4