and return NULL - shoudl return A value on exit.

SVN revision: 55875
This commit is contained in:
Carsten Haitzler 2011-01-05 07:52:49 +00:00
parent 2863b066ff
commit 3e6b3bcd0c
1 changed files with 1 additions and 1 deletions

View File

@ -541,6 +541,6 @@ elm_actionslider_indicator_label_get(Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return;
if (!wd) return NULL;
return wd->indicator_label;
}