also fix text_converter I guess

SVN revision: 62849
This commit is contained in:
Mike Blumenkrantz 2011-08-26 02:43:48 +00:00
parent 15bb236bbd
commit 032e34cc99
1 changed files with 7 additions and 1 deletions

View File

@ -951,11 +951,17 @@ notify_handler_html(Cnp_Selection *sel, Ecore_X_Event_Selection_Notify *notify)
static Eina_Bool
text_converter(char *target __UNUSED__, void *data, int size __UNUSED__, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
text_converter(char *target __UNUSED__, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *ttype __UNUSED__, int *typesize __UNUSED__)
{
Cnp_Selection *sel;
cnp_debug("text converter\n");
if (size != sizeof(int))
{
if (data_ret) *data_ret = strndup(data, size - 1);
if (size_ret) *size_ret = size - 1;
return EINA_TRUE;
}
sel = selections + *((int *)data);
if (!sel->active) return EINA_TRUE;