From 8a21cd47f472096b987a18fa0cc21cd1199f80d1 Mon Sep 17 00:00:00 2001 From: RinaYou Date: Tue, 24 Oct 2017 13:05:05 +0900 Subject: Fixed the build warnings CS0108 Change-Id: I3da79c9a9ac41cd346e3fcecc09a52bbcd43230b --- Xamarin.Forms.Platform.Tizen/Native/Canvas.cs | 2 +- Xamarin.Forms.Platform.Tizen/Native/Page.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 Xamarin.Forms.Platform.Tizen/Native/Canvas.cs diff --git a/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs b/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs old mode 100644 new mode 100755 index c345abf2..12ca2a15 --- a/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Canvas.cs @@ -59,7 +59,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native /// /// Gets list of native elements that are placed in the canvas. /// - public IList Children + public new IList Children { get { diff --git a/Xamarin.Forms.Platform.Tizen/Native/Page.cs b/Xamarin.Forms.Platform.Tizen/Native/Page.cs index 0ade2f2b..a9708ef4 100755 --- a/Xamarin.Forms.Platform.Tizen/Native/Page.cs +++ b/Xamarin.Forms.Platform.Tizen/Native/Page.cs @@ -17,7 +17,7 @@ namespace Xamarin.Forms.Platform.Tizen.Native /// /// Exposes the Children property, mapping it to the _canvas' Children property. /// - public IList Children => _canvas.Children; + public new IList Children => _canvas.Children; /// /// The canvas, used as a container for other objects. -- cgit v1.2.3