[ElmSharp] modified wrong description (#750)
authorarosis78 <jh0506.yun@samsung.com>
Fri, 15 Mar 2019 00:28:27 +0000 (09:28 +0900)
committerGitHub <noreply@github.com>
Fri, 15 Mar 2019 00:28:27 +0000 (09:28 +0900)
src/ElmSharp/ElmSharp/Widget.cs

index 919b0a7..6ddcb1e 100644 (file)
@@ -335,7 +335,7 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Sets content to the particular part of the widget, and the preserve old content will not be unset.
+        /// Sets content to the particular part of the widget, and the preserve old content will be deleted.
         /// </summary>
         /// <param name="part">The name of the particular part.</param>
         /// <param name="content">The content.</param>
@@ -351,7 +351,7 @@ namespace ElmSharp
         /// </summary>
         /// <param name="part">The name of the particular part.</param>
         /// <param name="content">The content.</param>
-        /// <param name="preserveOldContent">true, preserve old content will be unset. false, preserve old content will not be unset.</param>
+        /// <param name="preserveOldContent">true, preserve old content will be unset and not be deleted. false, preserve old content will be deleted.</param>
         /// <seealso cref="SetPartContent(string, EvasObject)"/>
         /// <since_tizen> preview </since_tizen>
         public virtual bool SetPartContent(string part, EvasObject content, bool preserveOldContent)
@@ -366,7 +366,7 @@ namespace ElmSharp
         }
 
         /// <summary>
-        /// Sets content to the widget, and the preserve old content will not be unset.
+        /// Sets content to the widget, and the preserve old content will be deleted.
         /// </summary>
         /// <param name="content">The content.</param>
         /// <seealso cref="SetContent(EvasObject, bool)"/>
@@ -380,7 +380,7 @@ namespace ElmSharp
         /// Sets content to the widget.
         /// </summary>
         /// <param name="content">The content.</param>
-        /// <param name="preserveOldContent">true, preserve old content will be unset. false, preserve old content will not be unset.</param>
+        /// <param name="preserveOldContent">true, preserve old content will be unset and not be deleted. false, preserve old content will be deleted.</param>
         /// <seealso cref="SetContent(EvasObject)"/>
         /// <since_tizen> preview </since_tizen>
         public void SetContent(EvasObject content, bool preserveOldContent)
@@ -500,4 +500,4 @@ namespace ElmSharp
             return Interop.Elementary.elm_object_part_content_get(RealHandle, part);
         }
     }
-}
\ No newline at end of file
+}