[ElmSharp] Fix wrong entry point of interop call 83/154283/1
authorSeungkeun Lee <sngn.lee@samsung.com>
Tue, 10 Oct 2017 04:32:56 +0000 (13:32 +0900)
committerSeungkeun Lee <sngn.lee@samsung.com>
Tue, 10 Oct 2017 04:32:56 +0000 (13:32 +0900)
 - It influence to EvasImage.File property getter
 - _evas_object_image_file_get -> evas_object_image_file_get

Change-Id: If2a2d5fc7f38a3239ea9d4f1b3410c1112866b89

src/ElmSharp/Interop/Interop.Evas.Image.cs

index 815afff..101eabe 100644 (file)
@@ -34,7 +34,7 @@ internal static partial class Interop
         [DllImport(Libraries.Evas)]
         internal static extern void evas_object_image_file_set(IntPtr obj, string file, string key);
 
-        [DllImport(Libraries.Evas, EntryPoint = "_evas_object_image_file_get")]
+        [DllImport(Libraries.Evas, EntryPoint = "evas_object_image_file_get")]
         internal static extern void _evas_object_image_file_get(IntPtr obj, out IntPtr file, out IntPtr key);
 
         internal static void evas_object_image_file_get(IntPtr obj, out string file, out string key)