From: huayongxu <49056704+huayongxu@users.noreply.github.com> Date: Thu, 6 May 2021 08:49:20 +0000 (+0800) Subject: [NUI] Fix issue that a symbol is not found. (#2998) X-Git-Tag: submit/tizen_6.0/20210507.005247~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ada91ccd80f7a62c8f93aa0bdd4376b6d621e89a;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Fix issue that a symbol is not found. (#2998) --- diff --git a/src/Tizen.NUI/src/internal/Interop/Interop.WebSettings.cs b/src/Tizen.NUI/src/internal/Interop/Interop.WebSettings.cs index 13464409c..9efe97909 100755 --- a/src/Tizen.NUI/src/internal/Interop/Interop.WebSettings.cs +++ b/src/Tizen.NUI/src/internal/Interop/Interop.WebSettings.cs @@ -32,8 +32,8 @@ namespace Tizen.NUI [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_WebSettings_AllowScriptsOpenWindows")] public static extern void AllowScriptsOpenWindows(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_WebSettings_AreImagesAutomaticallyLoaded")] - public static extern bool AreImagesAutomaticallyLoaded(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_WebSettings_AreImagesLoadedAutomatically")] + public static extern bool AreImagesLoadedAutomatically(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport(NDalicPINVOKE.Lib, EntryPoint = "CSharp_Dali_WebSettings_AllowImagesLoadAutomatically")] public static extern void AllowImagesLoadAutomatically(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); diff --git a/src/Tizen.NUI/src/internal/WebSettings.cs b/src/Tizen.NUI/src/internal/WebSettings.cs index 25360f3d1..a05030f04 100755 --- a/src/Tizen.NUI/src/internal/WebSettings.cs +++ b/src/Tizen.NUI/src/internal/WebSettings.cs @@ -150,7 +150,7 @@ namespace Tizen.NUI { get { - return Interop.WebSettings.AreImagesAutomaticallyLoaded(SwigCPtr); + return Interop.WebSettings.AreImagesLoadedAutomatically(SwigCPtr); } set {