From 21e45166a5f61aad97701a1fe2ff98bb560edc7d Mon Sep 17 00:00:00 2001 From: Seoyeon Kim Date: Thu, 25 Jul 2019 13:42:44 +0900 Subject: [PATCH] Fix csharp-binder build error - Because there's using an old API in InputMethodContext, there would be a build fail. - Fixed to use the correct API Change-Id: I2d3bb9f369a7b89d8a189add8483e17b3c71e72c Signed-off-by: Seoyeon Kim --- dali-csharp-binder/src/input-method-context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dali-csharp-binder/src/input-method-context.cpp b/dali-csharp-binder/src/input-method-context.cpp index cb8542a..822687a 100755 --- a/dali-csharp-binder/src/input-method-context.cpp +++ b/dali-csharp-binder/src/input-method-context.cpp @@ -1239,7 +1239,7 @@ SWIGEXPORT void SWIGSTDCALL CSharp_Dali_InputMethodContext_SetMIMEType(void * ja arg2 = &arg2_str; { try { - (arg1)->SetMIMEType((std::string const &)*arg2); + (arg1)->SetContentMIMETypes((std::string const &)*arg2); } catch (std::out_of_range& e) { { SWIG_CSharpException(SWIG_IndexError, const_cast(e.what())); return ; -- 2.7.4