From: AdunFang Date: Wed, 14 Jun 2023 22:55:52 +0000 (+0900) Subject: [NUIComponents] Roll back error modification X-Git-Tag: accepted/tizen/unified/20231205.024657~284 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0c350a13f569ef9a9a8dd48ae95eb7d63fea916;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git [NUIComponents] Roll back error modification --- diff --git a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs index 74b678a..ae69472 100755 --- a/src/Tizen.NUI.Components/Controls/ScrollableBase.cs +++ b/src/Tizen.NUI.Components/Controls/ScrollableBase.cs @@ -1115,16 +1115,6 @@ namespace Tizen.NUI.Components } /// - /// return the children of ContentContainer when user try to get the children of ScrollableBase. - /// - /// - [EditorBrowsable(EditorBrowsableState.Never)] - protected override List GetChildren() - { - return ContentContainer.Children; - } - - /// /// Scrolls to the item at the specified index. /// /// Index of item. diff --git a/src/Tizen.NUI/src/public/Common/Container.cs b/src/Tizen.NUI/src/public/Common/Container.cs index 823ca55..13577bf 100755 --- a/src/Tizen.NUI/src/public/Common/Container.cs +++ b/src/Tizen.NUI/src/public/Common/Container.cs @@ -107,7 +107,7 @@ namespace Tizen.NUI { get { - return GetChildren(); + return childViews; } } @@ -327,16 +327,6 @@ namespace Tizen.NUI } /// - /// Some type which inherit from Container overwrite the Add/Remove, so the getter of children should also be overwrite. - /// - /// - [EditorBrowsable(EditorBrowsableState.Never)] - protected virtual List GetChildren() - { - return childViews; - } - - /// /// Invoked whenever the binding context of the element changes. Implement this method to add class handling for this event. /// /// This will be public opened in tizen_5.0 after ACR done. Before ACR, need to be hidden as inhouse API.