From a0cdbc9ec2c43ab1e38e45c505a9640b323ea5af Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Mon, 17 Oct 2016 10:43:43 -0400 Subject: [PATCH] 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 --- src/lib/elementary/elm_cnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/elementary/elm_cnp.c b/src/lib/elementary/elm_cnp.c index dfe3ae7..3ccd0ec 100644 --- a/src/lib/elementary/elm_cnp.c +++ b/src/lib/elementary/elm_cnp.c @@ -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; -- 2.7.4