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 <flavio.ceolin@profusion.mobi>



SVN revision: 62019
This commit is contained in:
Flavio Ceolin 2011-08-02 19:41:43 +00:00 committed by Rafael Antognolli
parent 00c5498cf0
commit 1b067094de
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}