From 02634a4a318e9161448f11395f0391fe25eb9949 Mon Sep 17 00:00:00 2001 From: "huiyu,eun" Date: Fri, 15 Sep 2017 11:12:36 +0900 Subject: [PATCH 1/1] [NUI] Fix build warnings: Fix xml comments warnigs: CS1572, CS1573, CS1574 please refer https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs1572 https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs1573 https://docs.microsoft.com/ko-kr/dotnet/csharp/misc/cs1574 Change-Id: I359005e57d41d49b9d2ffbd5f22fab73493c8f3a Signed-off-by: huiyu,eun --- src/Tizen.NUI/src/internal/NUIWidgetCoreBackend.cs | 8 ++++---- src/Tizen.NUI/src/public/BaseComponents/View.cs | 10 +++++----- src/Tizen.NUI/src/public/Container.cs | 6 +++--- src/Tizen.NUI/src/public/Layer.cs | 4 ++-- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/Tizen.NUI/src/internal/NUIWidgetCoreBackend.cs b/src/Tizen.NUI/src/internal/NUIWidgetCoreBackend.cs index ec05e43..0f8ff84 100755 --- a/src/Tizen.NUI/src/internal/NUIWidgetCoreBackend.cs +++ b/src/Tizen.NUI/src/internal/NUIWidgetCoreBackend.cs @@ -145,7 +145,7 @@ namespace Tizen.NUI /// /// Region changed event callback function. /// - /// Application instance + /// Application instance /// Event argument for RegionChanged private void OnRegionChanged(object sender, WidgetApplication.WidgetApplicationEventArgs e) { @@ -158,7 +158,7 @@ namespace Tizen.NUI /// /// Memory Low event callback function. /// - /// Application instance + /// Application instance /// Event argument for MemoryLow private void OnMemoryLow(object sender, WidgetApplication.WidgetApplicationEventArgs e) { @@ -171,7 +171,7 @@ namespace Tizen.NUI /// /// Language changed event callback function. /// - /// Application instance + /// Application instance /// Event argument for LanguageChanged private void OnLanguageChanged(object sender, WidgetApplication.WidgetApplicationEventArgs e) { @@ -186,7 +186,7 @@ namespace Tizen.NUI /// /// Battery low event callback function. /// - /// Application instance + /// Application instance /// Event argument for BatteryLow private void OnBatteryLow(object sender, WidgetApplication.WidgetApplicationEventArgs e) { diff --git a/src/Tizen.NUI/src/public/BaseComponents/View.cs b/src/Tizen.NUI/src/public/BaseComponents/View.cs index 1002e87..e7f728b 100755 --- a/src/Tizen.NUI/src/public/BaseComponents/View.cs +++ b/src/Tizen.NUI/src/public/BaseComponents/View.cs @@ -43,7 +43,7 @@ namespace Tizen.NUI.BaseComponents /// /// Adds a child view to this view. /// - /// + /// /// public override void Add(View child) { @@ -55,7 +55,7 @@ namespace Tizen.NUI.BaseComponents /// /// Removes a child view from this View. If the view was not a child of this view, this is a no-op. /// - /// + /// /// public override void Remove(View child) { @@ -67,7 +67,7 @@ namespace Tizen.NUI.BaseComponents /// /// Retrieves a child view by index. /// - /// + /// /// public override View GetChildAt(uint index) { @@ -83,7 +83,7 @@ namespace Tizen.NUI.BaseComponents /// /// Retrieves the number of children held by the view. /// - /// + /// /// protected override uint GetChildCount() { @@ -96,7 +96,7 @@ namespace Tizen.NUI.BaseComponents /// /// Gets the views parent. /// - /// + /// protected override Container GetParent() { Container ret; diff --git a/src/Tizen.NUI/src/public/Container.cs b/src/Tizen.NUI/src/public/Container.cs index 1078d6a..b0632c2 100755 --- a/src/Tizen.NUI/src/public/Container.cs +++ b/src/Tizen.NUI/src/public/Container.cs @@ -57,8 +57,8 @@ namespace Tizen.NUI /// /// Removes a child view from this view. If the view was not a child of this view, this is a no-op. /// - ///
This view (the parent) has been initialized. The child view is not the same as the parent view.
- /// The child. + ///
This View(the parent) has been initialized. The child view is not the same as the parent view.
+ /// The view to remove public abstract void Remove( View view ); /// @@ -111,4 +111,4 @@ namespace Tizen.NUI } } } -} // namespace Tizen.NUI \ No newline at end of file +} // namespace Tizen.NUI diff --git a/src/Tizen.NUI/src/public/Layer.cs b/src/Tizen.NUI/src/public/Layer.cs index cc9dd25..f3b4967 100755 --- a/src/Tizen.NUI/src/public/Layer.cs +++ b/src/Tizen.NUI/src/public/Layer.cs @@ -41,7 +41,7 @@ namespace Tizen.NUI /// /// Adds a child view to this layer. /// - /// + /// /// public override void Add(View child) { @@ -53,7 +53,7 @@ namespace Tizen.NUI /// /// Removes a child view from this layer. If the view was not a child of this layer, this is a no-op. /// - /// + /// /// public override void Remove(View child) { -- 2.7.4