Backport: a39246c :: Remove return value in function returning void.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
Signed-off-by: Deon Thomas <PrinceAMD.Elive@gmail.com>
This commit is contained in:
Chris Michael 2013-08-02 11:36:07 +01:00 committed by Deon Thomas
parent aae26dbf64
commit be9e1d24b5
1 changed files with 1 additions and 1 deletions

View File

@ -910,7 +910,7 @@ e_smart_monitor_indicator_available_set(Evas_Object *obj, Eina_Bool available)
E_Smart_Data *sd;
/* try to get the objects smart data */
if (!(sd = evas_object_smart_data_get(obj))) return 0;
if (!(sd = evas_object_smart_data_get(obj))) return;
if (available)
edje_object_signal_emit(sd->o_frame, "e,state,indicator,enabled", "e");
else