[NUI] remove "_" and refactoring naming to pascal case. (#2244)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / ItemView.cs
index d6e09fe..59f2393 100755 (executable)
@@ -190,7 +190,7 @@ namespace Tizen.NUI
         [EditorBrowsable(EditorBrowsableState.Never)]
         public new uint GetChildCount()
         {
-            uint ret = Interop.ActorInternal.Actor_GetChildCount(swigCPtr);
+            uint ret = Interop.ActorInternal.ActorGetChildCount(swigCPtr);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
         }
@@ -199,7 +199,7 @@ namespace Tizen.NUI
         [EditorBrowsable(EditorBrowsableState.Never)]
         public new View GetChildAt(uint index)
         {
-            View ret = new View(Interop.ActorInternal.Actor_GetChildAt(swigCPtr, index), true);
+            View ret = new View(Interop.ActorInternal.ActorGetChildAt(swigCPtr, index), true);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
             return ret;
         }