summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2016-10-17 10:43:43 -0400
committerChris Michael <cp.michael@samsung.com>2016-10-17 10:43:43 -0400
commita0cdbc9ec2c43ab1e38e45c505a9640b323ea5af (patch)
treeec960ce2a51ca579aa6117f9a9c48353fcd59c9d
parent79815ea8516edc70c4b2881e4c2e902295c24db7 (diff)
downloadefl-a0cdbc9ec2c43ab1e38e45c505a9640b323ea5af.tar.gz
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>
-rw-r--r--src/lib/elementary/elm_cnp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_cnp.c b/src/lib/elementary/elm_cnp.c
index dfe3ae7a4a..3ccd0ec102 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;