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-02-03 13:27:38 +0900
commitfa09321e6ff6fd8c80b84a65bf1b682799d21a33 (patch)
treeb43db35c167c4931dd540d6ce709042cc7690510
parent9fec1ae3a9c70213f5c5bf87128c048de092e4d2 (diff)
downloadxamarin-forms-fa09321e6ff6fd8c80b84a65bf1b682799d21a33.tar.gz
xamarin-forms-fa09321e6ff6fd8c80b84a65bf1b682799d21a33.tar.bz2
xamarin-forms-fa09321e6ff6fd8c80b84a65bf1b682799d21a33.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();