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-01-11 20:55:46 -0800
commit63c75a2f77d1b40a98235dee3996140a41b24745 (patch)
tree9801ad7843ded3bbf32af3b6a19f2f0e373fa788
parentdcf317090aa679899af28ecf3555283ce0a34b69 (diff)
downloadxamarin-forms-63c75a2f77d1b40a98235dee3996140a41b24745.tar.gz
xamarin-forms-63c75a2f77d1b40a98235dee3996140a41b24745.tar.bz2
xamarin-forms-63c75a2f77d1b40a98235dee3996140a41b24745.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();