diff options
author | RinaYou <rina6350.you@samsung.com> | 2017-10-24 13:05:05 +0900 |
---|---|---|
committer | RinaYou <rina6350.you@samsung.com> | 2017-10-26 14:10:02 +0900 |
commit | 8a21cd47f472096b987a18fa0cc21cd1199f80d1 (patch) | |
tree | a30a9b68f83fb956cd99e02783575a186c527ea7 /Xamarin.Forms.Platform.Tizen/Native/Page.cs | |
parent | ed7f7990386d7f125d4206fb5aebcf3a9d33a9f2 (diff) | |
download | xamarin-forms-8a21cd47f472096b987a18fa0cc21cd1199f80d1.tar.gz xamarin-forms-8a21cd47f472096b987a18fa0cc21cd1199f80d1.tar.bz2 xamarin-forms-8a21cd47f472096b987a18fa0cc21cd1199f80d1.zip |
Fixed the build warnings CS0108
Change-Id: I3da79c9a9ac41cd346e3fcecc09a52bbcd43230b
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native/Page.cs')
-rwxr-xr-x | Xamarin.Forms.Platform.Tizen/Native/Page.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 /// <summary> /// Exposes the Children property, mapping it to the _canvas' Children property. /// </summary> - public IList<EvasObject> Children => _canvas.Children; + public new IList<EvasObject> Children => _canvas.Children; /// <summary> /// The canvas, used as a container for other objects. |