Skip to content

Commit

Permalink
[NUI] Revert ApplyCornerRadius access level as internal
Browse files Browse the repository at this point in the history
Since protected level make runtime error for TV FLUX project,
let we revert it as internal again.

Signed-off-by: Eunki, Hong <[email protected]>
  • Loading branch information
Eunki, Hong authored and hinohie committed Oct 10, 2024
1 parent e4804ef commit 70288d4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/Tizen.NUI.Scene3D/src/public/Controls/SceneView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ private Rotation GetSkyboxOrientation()
/// Callback when CornerRadius property changed.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
protected override void ApplyCornerRadius()
internal override void ApplyCornerRadius()
{
base.ApplyCornerRadius();

Expand All @@ -863,7 +863,7 @@ protected override void ApplyCornerRadius()
/// Callback when Borderline property changed.
/// </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
protected override void ApplyBorderline()
internal override void ApplyBorderline()
{
base.ApplyBorderline();

Expand Down
4 changes: 2 additions & 2 deletions src/Tizen.NUI/src/public/BaseComponents/ImageView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1924,7 +1924,7 @@ internal ViewResourceReadySignal ResourceReadySignal(View view)
}

[EditorBrowsable(EditorBrowsableState.Never)]
protected override void ApplyCornerRadius()
internal override void ApplyCornerRadius()
{
base.ApplyCornerRadius();

Expand All @@ -1942,7 +1942,7 @@ protected override void ApplyCornerRadius()
}

[EditorBrowsable(EditorBrowsableState.Never)]
protected override void ApplyBorderline()
internal override void ApplyBorderline()
{
base.ApplyBorderline();

Expand Down
4 changes: 2 additions & 2 deletions src/Tizen.NUI/src/public/BaseComponents/ViewInternal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1259,7 +1259,7 @@ internal virtual void UpdateBackgroundExtraData()
}

[EditorBrowsable(EditorBrowsableState.Never)]
protected virtual void ApplyCornerRadius()
internal virtual void ApplyCornerRadius()
{
if (backgroundExtraData == null) return;

Expand All @@ -1283,7 +1283,7 @@ protected virtual void ApplyCornerRadius()
}

[EditorBrowsable(EditorBrowsableState.Never)]
protected virtual void ApplyBorderline()
internal virtual void ApplyBorderline()
{
if (backgroundExtraData == null) return;

Expand Down
3 changes: 2 additions & 1 deletion src/Tizen.NUI/src/public/WebView/WebView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2982,8 +2982,9 @@ internal WebView Assign(WebView webView)
if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

[EditorBrowsable(EditorBrowsableState.Never)]
protected override void ApplyCornerRadius()
internal override void ApplyCornerRadius()
{
base.ApplyCornerRadius();

Expand Down

0 comments on commit 70288d4

Please sign in to comment.