summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchungryeol lim <cdark.lim@samsung.com>2017-01-02 17:02:13 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-02-03 13:26:49 +0900
commit2ba15441dad5b3b11459ef54bf4f5f385bd37e7f (patch)
treebb5904cef0a44b6c45da1f04ccfd0c57075e3544
parent131e07c50779892b2bca98399af50aaf9d2f50e5 (diff)
downloadxamarin-forms-2ba15441dad5b3b11459ef54bf4f5f385bd37e7f.tar.gz
xamarin-forms-2ba15441dad5b3b11459ef54bf4f5f385bd37e7f.tar.bz2
xamarin-forms-2ba15441dad5b3b11459ef54bf4f5f385bd37e7f.zip
Change platform class access modifier
- Requires GetRenderer in custom renderer implementation. - Other platforms (iOS, Android, UWP) are also open to the public. Change-Id: I9beb45b63b91ee11b910fe486ec99e124c8ac793 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
-rw-r--r--Xamarin.Forms.Platform.Tizen/Platform.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Platform.cs b/Xamarin.Forms.Platform.Tizen/Platform.cs
index ab073007..c7a89b06 100644
--- a/Xamarin.Forms.Platform.Tizen/Platform.cs
+++ b/Xamarin.Forms.Platform.Tizen/Platform.cs
@@ -6,7 +6,7 @@ using ElmSharp;
namespace Xamarin.Forms.Platform.Tizen
{
- internal class Platform : BindableObject, IPlatform, INavigation, IDisposable
+ public class Platform : BindableObject, IPlatform, INavigation, IDisposable
{
internal static readonly BindableProperty RendererProperty = BindableProperty.CreateAttached("Renderer", typeof(IVisualElementRenderer), typeof(Platform), default(IVisualElementRenderer),
propertyChanged: (bindable, oldvalue, newvalue) =>