From 0ec440803b4ce426e89454aaf5adc18d3eea40ed Mon Sep 17 00:00:00 2001 From: coderhyme Date: Thu, 19 Oct 2017 14:11:01 +0900 Subject: [PATCH] [Multimedia] Fixed wrong formats in the doc-comments. Change-Id: I82e1060bdf23dd0bcfa72747e3a36764d9895d67 Signed-off-by: coderhyme --- src/Tizen.Multimedia.Radio/Radio/Radio.cs | 4 ++-- src/Tizen.Multimedia.Util/ImageUtil/ImageDecoder.cs | 6 +++--- src/Tizen.Multimedia.Util/ImageUtil/ImageEncoder.cs | 14 +++++++------- .../ImageUtil/ImageTransform.cs | 20 ++++++++++---------- .../ImageUtil/ImageTransformer.cs | 2 +- src/Tizen.Multimedia.Util/ImageUtil/ImageUtil.cs | 4 ++-- 6 files changed, 25 insertions(+), 25 deletions(-) diff --git a/src/Tizen.Multimedia.Radio/Radio/Radio.cs b/src/Tizen.Multimedia.Radio/Radio/Radio.cs index b24ff99..e7bef77 100755 --- a/src/Tizen.Multimedia.Radio/Radio/Radio.cs +++ b/src/Tizen.Multimedia.Radio/Radio/Radio.cs @@ -117,7 +117,7 @@ namespace Tizen.Multimedia /// /// /// is less than of .
- /// - or -
+ /// -or-
/// is greater than of . ///
public int Frequency @@ -193,7 +193,7 @@ namespace Tizen.Multimedia /// The default is 1.0. /// /// is less than zero.
- /// - or -
+ /// -or-
/// is greater than 1.0. ///
public float Volume diff --git a/src/Tizen.Multimedia.Util/ImageUtil/ImageDecoder.cs b/src/Tizen.Multimedia.Util/ImageUtil/ImageDecoder.cs index b30029e..502e31c 100644 --- a/src/Tizen.Multimedia.Util/ImageUtil/ImageDecoder.cs +++ b/src/Tizen.Multimedia.Util/ImageUtil/ImageDecoder.cs @@ -94,9 +94,9 @@ namespace Tizen.Multimedia.Util /// is null. /// /// is an empty string.
- /// - or -
+ /// -or-
/// is not a image file.
- /// - or -
+ /// -or-
/// The format of is not . ///
/// does not exists. @@ -142,7 +142,7 @@ namespace Tizen.Multimedia.Util /// is null. /// /// is an empty array.
- /// - or -
+ /// -or-
/// The format of is not . ///
/// The format of is not . diff --git a/src/Tizen.Multimedia.Util/ImageUtil/ImageEncoder.cs b/src/Tizen.Multimedia.Util/ImageUtil/ImageEncoder.cs index b1250b7..2263f2a 100644 --- a/src/Tizen.Multimedia.Util/ImageUtil/ImageEncoder.cs +++ b/src/Tizen.Multimedia.Util/ImageUtil/ImageEncoder.cs @@ -68,7 +68,7 @@ namespace Tizen.Multimedia.Util /// The target resolution. /// /// The width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// The height of is less than or equal to zero. ///
public void SetResolution(Size resolution) @@ -172,12 +172,12 @@ namespace Tizen.Multimedia.Util /// A task that represents the asynchronous encoding operation. /// /// is null.
- /// - or -
+ /// -or-
/// is null. ///
/// /// is an empty array.
- /// - or -
+ /// -or-
/// is not writable. ///
/// The resolution is not set. @@ -348,7 +348,7 @@ namespace Tizen.Multimedia.Util /// will be the . /// /// is less than or equal to 0.
- /// - or -
+ /// -or-
/// is greater than 100. ///
public JpegEncoder(int quality) : @@ -366,7 +366,7 @@ namespace Tizen.Multimedia.Util /// /// /// is less than or equal to 0.
- /// - or -
+ /// -or-
/// is greater than 100. ///
public int Quality @@ -418,12 +418,12 @@ namespace Tizen.Multimedia.Util /// A task that represents the asynchronous encoding operation. /// /// is null.
- /// - or -
+ /// -or-
/// is null. ///
/// /// has no element(empty).
- /// - or -
+ /// -or-
/// is not writable. ///
/// The resolution is not set. diff --git a/src/Tizen.Multimedia.Util/ImageUtil/ImageTransform.cs b/src/Tizen.Multimedia.Util/ImageUtil/ImageTransform.cs index 3545d56..d68c82d 100644 --- a/src/Tizen.Multimedia.Util/ImageUtil/ImageTransform.cs +++ b/src/Tizen.Multimedia.Util/ImageUtil/ImageTransform.cs @@ -106,7 +106,7 @@ namespace Tizen.Multimedia.Util /// The at the specified index. /// /// index is less than 0.
- /// - or -
+ /// -or-
/// index is equal to or greater than Count. ///
public ImageTransform this[int index] @@ -202,7 +202,7 @@ namespace Tizen.Multimedia.Util /// The zero-based index to remove. /// /// index is less than 0.
- /// - or -
+ /// -or-
/// index is equal to or greater than . ///
public void RemoveAt(int index) => _list.RemoveAt(index); @@ -474,11 +474,11 @@ namespace Tizen.Multimedia.Util /// The crop region. /// /// The X-position of is less than zero.
- /// - or -
+ /// -or-
/// The Y-position of is less than zero.
- /// - or -
+ /// -or-
/// The width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// The height of is less than or equal to zero. ///
public CropTransform(Rectangle region) @@ -491,11 +491,11 @@ namespace Tizen.Multimedia.Util /// /// /// The X-position of is less than zero.
- /// - or -
+ /// -or-
/// The Y-position of is less than zero.
- /// - or -
+ /// -or-
/// The width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// The height of is less than or equal to zero. ///
public Rectangle Region @@ -551,7 +551,7 @@ namespace Tizen.Multimedia.Util /// The size that an image is resized to. /// /// The width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// The height of is less than or equal to zero. ///
public ResizeTransform(Size size) @@ -564,7 +564,7 @@ namespace Tizen.Multimedia.Util /// /// /// The width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// The height of is less than or equal to zero. ///
public Size Size diff --git a/src/Tizen.Multimedia.Util/ImageUtil/ImageTransformer.cs b/src/Tizen.Multimedia.Util/ImageUtil/ImageTransformer.cs index 305c7a0..13d345d 100644 --- a/src/Tizen.Multimedia.Util/ImageUtil/ImageTransformer.cs +++ b/src/Tizen.Multimedia.Util/ImageUtil/ImageTransformer.cs @@ -39,7 +39,7 @@ namespace Tizen.Multimedia.Util /// A task that represents the asynchronous transforming operation. /// /// is null.
- /// - or -
+ /// -or-
/// is null. ///
/// The has already been disposed of. diff --git a/src/Tizen.Multimedia.Util/ImageUtil/ImageUtil.cs b/src/Tizen.Multimedia.Util/ImageUtil/ImageUtil.cs index 9f6636b..9d35b91 100644 --- a/src/Tizen.Multimedia.Util/ImageUtil/ImageUtil.cs +++ b/src/Tizen.Multimedia.Util/ImageUtil/ImageUtil.cs @@ -53,7 +53,7 @@ namespace Tizen.Multimedia.Util /// The buffer size. /// /// width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// height of is less than or equal to zero. ///
/// is invalid. @@ -92,7 +92,7 @@ namespace Tizen.Multimedia.Util /// is empty. /// /// width of is less than or equal to zero.
- /// - or -
+ /// -or-
/// height of is less than or equal to zero. ///
public static Color GetColor(byte[] buffer, Size size) -- 2.7.4