fixup! Introduce Tizen.WebView 76/146876/1
authoryh106.jung <yh106.jung@samsung.com>
Thu, 31 Aug 2017 02:50:25 +0000 (11:50 +0900)
committeryh106.jung <yh106.jung@samsung.com>
Thu, 31 Aug 2017 02:51:26 +0000 (11:51 +0900)
Wrong API has been called for WebView.Title, so this patch fixes it.

Change-Id: I90851ba7b4078fdb83f5bb267597d30a12392f8b
Signed-off-by: yh106.jung <yh106.jung@samsung.com>
src/Tizen.WebView/Interop/Interop.ChromiumEwk.View.cs

index 0f8a17c..75a50cc 100644 (file)
@@ -82,7 +82,7 @@ internal static partial class Interop
 
         internal static string ewk_view_title_get(IntPtr obj)
         {
-            IntPtr ptr = _ewk_view_url_get(obj);
+            IntPtr ptr = _ewk_view_title_get(obj);
             return Marshal.PtrToStringAnsi(ptr);
         }