From 54a597f67192d17b3974152c4ce3889dba3e3d8e Mon Sep 17 00:00:00 2001 From: "sung-su.kim" Date: Wed, 11 Jan 2017 16:18:54 +0900 Subject: Change Span's access modifier to public - Span.GetDecoratedText() and Span.GetStyle() turned to public from internal. Change-Id: I7411025faa76e751f5191f70467621600ce0f82d --- Xamarin.Forms.Platform.Tizen/Native/Span.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 Xamarin.Forms.Platform.Tizen/Native/Span.cs 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 0e3f0000..c92fefcf --- 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(); -- cgit v1.2.3