colorselector: Check return value of elm_layout_theme_set as other widgets do.

This fixes coverity CID 1273969.
This commit is contained in:
Daniel Juyung Seo 2015-03-04 20:59:36 +09:00
parent 03af867581
commit cce206ff53
1 changed files with 4 additions and 1 deletions

View File

@ -1117,7 +1117,10 @@ _elm_colorselector_elm_widget_theme_apply(Eo *obj, Elm_Colorselector_Data *sd)
}
}
elm_layout_theme_set(sd->picker, "colorselector", "picker/base", elm_widget_style_get(obj));
if (!elm_layout_theme_set(sd->picker, "colorselector", "picker/base",
elm_widget_style_get(obj)))
CRI("Failed to set layout!");
style = eina_stringshare_printf("colorselector/%s", elm_widget_style_get(obj));
#ifdef HAVE_ELEMENTARY_X
elm_object_style_set(sd->button, style);