damn inconsistent safety check macros

SVN revision: 62173
This commit is contained in:
Mike Blumenkrantz 2011-08-07 03:54:23 +00:00
parent 3e27658e51
commit ef51692042
1 changed files with 1 additions and 1 deletions

View File

@ -1725,7 +1725,7 @@ elm_toolbar_orientation_set(Evas_Object *obj, Eina_Bool vertical)
EAPI Eina_Bool
elm_toolbar_orientation_get(Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype);
ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
Widget_Data *wd = elm_widget_data_get(obj);
if (!wd) return EINA_FALSE;
return wd->vertical;