THIS was the dnd bug i saw! that i couldnt reproduce easily... THIS...

heisenbug... ptr stuff wrong. :)



SVN revision: 76708
This commit is contained in:
Carsten Haitzler 2012-09-16 03:27:34 +00:00
parent b5436997b8
commit 45ded3832b
1 changed files with 5 additions and 3 deletions

View File

@ -6062,10 +6062,12 @@ _e_fm2_dnd_drop_hide(Evas_Object *obj)
static Eina_Bool
_e_fm2_dnd_type_implemented(const char *type)
{
const char **t;
const char ***t;
for (t = *_e_fm2_dnd_types; t; t++)
if (type == *t) return EINA_TRUE;
for (t = _e_fm2_dnd_types; *t; t++)
{
if (type == **t) return EINA_TRUE;
}
return EINA_FALSE;
}