From: sung-su.kim Date: Wed, 11 Jan 2017 07:18:54 +0000 (+0900) Subject: Change Span's access modifier to public X-Git-Tag: accepted/tizen/4.0/unified/20170816.011313~183 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d85cf505c3064666fb0232c518b84481d48e12e2;p=platform%2Fupstream%2Fxamarin-forms.git Change Span's access modifier to public - Span.GetDecoratedText() and Span.GetStyle() turned to public from internal. Change-Id: I7411025faa76e751f5191f70467621600ce0f82d --- diff --git a/Xamarin.Forms.Platform.Tizen/Native/Span.cs b/Xamarin.Forms.Platform.Tizen/Native/Span.cs old mode 100644 new mode 100755 index 0e3f000..c92fefc --- 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 /// /// This method return text decorated with markup if FormattedText is set or plain text otherwise. /// - internal string GetDecoratedText() + public string GetDecoratedText() { if (FormattedText != null) { @@ -275,7 +275,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native .Replace("\n", "
"); } - internal string GetStyle() + public string GetStyle() { StringBuilder sb = new StringBuilder();