From: huiyu,eun Date: Thu, 19 Oct 2017 05:46:39 +0000 (+0900) Subject: [NUI] Modify PaddingType X-Git-Tag: preview1-00319~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=51781d564a24404f2ad5932bbd25216a3c07e6ad;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Modify PaddingType Modify PaddingType Change-Id: Ibdb8039be8eb27729f22887af7cd6067625f382a --- diff --git a/src/Tizen.NUI/src/public/PaddingType.cs b/src/Tizen.NUI/src/public/PaddingType.cs index 0dc76a9..0e6ac1a 100755 --- a/src/Tizen.NUI/src/public/PaddingType.cs +++ b/src/Tizen.NUI/src/public/PaddingType.cs @@ -307,7 +307,7 @@ namespace Tizen.NUI /// End padding or Y coordinate /// Top padding or Height /// Bottom padding or Width - 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 /// Bottom padding or Width 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(); }