From 51781d564a24404f2ad5932bbd25216a3c07e6ad Mon Sep 17 00:00:00 2001 From: "huiyu,eun" Date: Thu, 19 Oct 2017 14:46:39 +0900 Subject: [PATCH] [NUI] Modify PaddingType Modify PaddingType Change-Id: Ibdb8039be8eb27729f22887af7cd6067625f382a --- src/Tizen.NUI/src/public/PaddingType.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); } -- 2.7.4