elementary: Fix call to offer_supports_mime function

As this function was misnamed in Ecore_Wl2, update the code here to
use the proper API function.

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-10-17 10:43:43 -04:00
parent 79815ea851
commit a0cdbc9ec2
1 changed files with 1 additions and 1 deletions

View File

@ -3079,7 +3079,7 @@ _wl_elm_cnp_selection_get(const Evas_Object *obj, Elm_Sel_Type selection, Elm_Se
for (j = 0; convertion[i].translates[j]; j++)
{
if (!ecore_wl2_offer_supprts_mime(offer, convertion[i].translates[j])) continue;
if (!ecore_wl2_offer_supports_mime(offer, convertion[i].translates[j])) continue;
//we have found mathing mimetypes
Selection_Ready *ready;