From: Eunki, Hong Date: Thu, 10 Oct 2024 11:44:49 +0000 (+0900) Subject: [NUI] Revert ApplyCornerRadius access level as internal X-Git-Tag: submit/tizen/20241010.122358~1^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=70288d4c407d8bcba110262670fa3b5ced353480;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUI] Revert ApplyCornerRadius access level as internal Since protected level make runtime error for TV FLUX project, let we revert it as internal again. Signed-off-by: Eunki, Hong --- diff --git a/src/Tizen.NUI.Scene3D/src/public/Controls/SceneView.cs b/src/Tizen.NUI.Scene3D/src/public/Controls/SceneView.cs index ff99b138e..e82e6affb 100755 --- a/src/Tizen.NUI.Scene3D/src/public/Controls/SceneView.cs +++ b/src/Tizen.NUI.Scene3D/src/public/Controls/SceneView.cs @@ -838,7 +838,7 @@ namespace Tizen.NUI.Scene3D /// Callback when CornerRadius property changed. /// [EditorBrowsable(EditorBrowsableState.Never)] - protected override void ApplyCornerRadius() + internal override void ApplyCornerRadius() { base.ApplyCornerRadius(); @@ -863,7 +863,7 @@ namespace Tizen.NUI.Scene3D /// Callback when Borderline property changed. /// [EditorBrowsable(EditorBrowsableState.Never)] - protected override void ApplyBorderline() + internal override void ApplyBorderline() { base.ApplyBorderline(); diff --git a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs index d68912f97..9fd61d9e8 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ImageView.cs @@ -1924,7 +1924,7 @@ namespace Tizen.NUI.BaseComponents } [EditorBrowsable(EditorBrowsableState.Never)] - protected override void ApplyCornerRadius() + internal override void ApplyCornerRadius() { base.ApplyCornerRadius(); @@ -1942,7 +1942,7 @@ namespace Tizen.NUI.BaseComponents } [EditorBrowsable(EditorBrowsableState.Never)] - protected override void ApplyBorderline() + internal override void ApplyBorderline() { base.ApplyBorderline(); diff --git a/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs b/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs index 285490a0e..cf134a84b 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs @@ -1259,7 +1259,7 @@ namespace Tizen.NUI.BaseComponents } [EditorBrowsable(EditorBrowsableState.Never)] - protected virtual void ApplyCornerRadius() + internal virtual void ApplyCornerRadius() { if (backgroundExtraData == null) return; @@ -1283,7 +1283,7 @@ namespace Tizen.NUI.BaseComponents } [EditorBrowsable(EditorBrowsableState.Never)] - protected virtual void ApplyBorderline() + internal virtual void ApplyBorderline() { if (backgroundExtraData == null) return; diff --git a/src/Tizen.NUI/src/public/WebView/WebView.cs b/src/Tizen.NUI/src/public/WebView/WebView.cs index 1035141c3..94e127f2c 100755 --- a/src/Tizen.NUI/src/public/WebView/WebView.cs +++ b/src/Tizen.NUI/src/public/WebView/WebView.cs @@ -2982,8 +2982,9 @@ namespace Tizen.NUI.BaseComponents if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; } + [EditorBrowsable(EditorBrowsableState.Never)] - protected override void ApplyCornerRadius() + internal override void ApplyCornerRadius() { base.ApplyCornerRadius();