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

index fd87e17..e16803f 100644 (file)
@@ -332,7 +332,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>
@@ -348,7 +348,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)
@@ -363,7 +363,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)"/>
@@ -377,7 +377,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)
@@ -497,4 +497,4 @@ namespace ElmSharp
             return Interop.Elementary.elm_object_part_content_get(RealHandle, part);
         }
     }
-}
\ No newline at end of file
+}