summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsung-su.kim <sung-su.kim@samsung.com>2017-01-11 16:18:54 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-04-24 13:36:48 +0900
commiteb6ac68fbcb379ebd12b9d4fca8ac241ea1f786c (patch)
tree0cee9bddcd2276477b769a3170503547d3c9892a
parente2862afe646d088eb8aaa383d211998730875091 (diff)
downloadxamarin-forms-eb6ac68fbcb379ebd12b9d4fca8ac241ea1f786c.tar.gz
xamarin-forms-eb6ac68fbcb379ebd12b9d4fca8ac241ea1f786c.tar.bz2
xamarin-forms-eb6ac68fbcb379ebd12b9d4fca8ac241ea1f786c.zip
Change Span's access modifier to public
- Span.GetDecoratedText() and Span.GetStyle() turned to public from internal. Change-Id: I7411025faa76e751f5191f70467621600ce0f82d
-rwxr-xr-x[-rw-r--r--]Xamarin.Forms.Platform.Tizen/Native/Span.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/Span.cs b/Xamarin.Forms.Platform.Tizen/Native/Span.cs
index 0e3f0000..c92fefcf 100644..100755
--- a/Xamarin.Forms.Platform.Tizen/Native/Span.cs
+++ b/Xamarin.Forms.Platform.Tizen/Native/Span.cs
@@ -144,7 +144,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
/// <summary>
/// This method return text decorated with markup if FormattedText is set or plain text otherwise.
/// </summary>
- internal string GetDecoratedText()
+ public string GetDecoratedText()
{
if (FormattedText != null)
{
@@ -275,7 +275,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native
.Replace("\n", "<br>");
}
- internal string GetStyle()
+ public string GetStyle()
{
StringBuilder sb = new StringBuilder();