summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native
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-07-10 11:11:16 +0900
commitd85cf505c3064666fb0232c518b84481d48e12e2 (patch)
tree84e0883bf2302d2c2a0222bb7085ff57bed423a4 /Xamarin.Forms.Platform.Tizen/Native
parent82518bbd84f61a82cee92b8eede4ceb0dce8f375 (diff)
downloadxamarin-forms-d85cf505c3064666fb0232c518b84481d48e12e2.tar.gz
xamarin-forms-d85cf505c3064666fb0232c518b84481d48e12e2.tar.bz2
xamarin-forms-d85cf505c3064666fb0232c518b84481d48e12e2.zip
Change Span's access modifier to public
- Span.GetDecoratedText() and Span.GetStyle() turned to public from internal. Change-Id: I7411025faa76e751f5191f70467621600ce0f82d
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native')
-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();