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-03-24 13:18:59 +0900
commit54a597f67192d17b3974152c4ce3889dba3e3d8e (patch)
tree07852b19c7c61570d71258ea276e74246ba2982e
parent7452249bffa96d622656f01a70d5a4f602cdc4d2 (diff)
downloadxamarin-forms-54a597f67192d17b3974152c4ce3889dba3e3d8e.tar.gz
xamarin-forms-54a597f67192d17b3974152c4ce3889dba3e3d8e.tar.bz2
xamarin-forms-54a597f67192d17b3974152c4ce3889dba3e3d8e.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();