[NUI] Modify PaddingType 99/156599/1
authorhuiyu,eun <huiyu.eun@samsung.com>
Thu, 19 Oct 2017 05:46:39 +0000 (14:46 +0900)
committerhuiyu,eun <huiyu.eun@samsung.com>
Thu, 19 Oct 2017 05:46:39 +0000 (14:46 +0900)
Modify PaddingType

Change-Id: Ibdb8039be8eb27729f22887af7cd6067625f382a

src/Tizen.NUI/src/public/PaddingType.cs

index 0dc76a9..0e6ac1a 100755 (executable)
@@ -307,7 +307,7 @@ namespace Tizen.NUI
         /// <param name="end">End padding or Y coordinate</param>
         /// <param name="top">Top padding or Height</param>
         /// <param name="bottom">Bottom padding or Width</param>
-        public PaddingType(float start, float end, float top, float bottom) : this(NDalicPINVOKE.new_PaddingType__SWIG_1(start, end, bottom, top), true)
+        public PaddingType(float start, float end, float top, float bottom) : this(NDalicPINVOKE.new_PaddingType__SWIG_1(start, end, top, bottom), true)
         {
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
@@ -321,7 +321,7 @@ namespace Tizen.NUI
         /// <param name="newBottom">Bottom padding or Width</param>
         public void Set(float newStart, float newEnd, float newTop, float newBottom)
         {
-            NDalicPINVOKE.PaddingType_Set(swigCPtr, newStart, newEnd, newBottom, newTop);
+            NDalicPINVOKE.PaddingType_Set(swigCPtr, newStart, newEnd, newTop, newBottom);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }