elementary/widget - sorry. I didn't intend this.

SVN revision: 67669
This commit is contained in:
ChunEon Park 2012-02-01 05:24:59 +00:00
parent 2db6dd39e0
commit 4c6d88b090
1 changed files with 0 additions and 26 deletions

View File

@ -2637,32 +2637,6 @@ elm_widget_type_check(const Evas_Object *obj,
return EINA_FALSE;
}
EAPI Eina_Bool
elm_widget_item_type_check(const Evas_Object *obj,
const char *type,
const char *func)
{
const char *provided, *expected = "(unknown)";
static int abort_on_warn = -1;
provided = elm_widget_type_get(obj);
if (EINA_LIKELY(provided == type)) return EINA_TRUE;
if (type) expected = type;
if ((!provided) || (!provided[0]))
{
provided = evas_object_type_get(obj);
if ((!provided) || (!provided[0]))
provided = "(unknown)";
}
ERR("Passing Object: %p in function: %s, of type: '%s' when expecting type: '%s'", obj, func, provided, expected);
if (abort_on_warn == -1)
{
if (getenv("ELM_ERROR_ABORT")) abort_on_warn = 1;
else abort_on_warn = 0;
}
if (abort_on_warn == 1) abort();
return EINA_FALSE;
}
static Evas_Object *
_widget_name_find(const Evas_Object *obj, const char *name, int recurse)
{