From d2ffb5cb3d69cd14339d05f05e0867a35ae2f696 Mon Sep 17 00:00:00 2001 From: WonYoung Choi Date: Tue, 14 Feb 2017 17:02:48 +0900 Subject: Fix const variable name in CellRenderer.cs Change-Id: I222ecc949729b1cbcc8514a0cdd02e85492c53d2 --- Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Xamarin.Forms.Platform.Tizen/Cells') diff --git a/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs b/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs index c74d2e3e..096c1689 100644 --- a/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs +++ b/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs @@ -6,7 +6,7 @@ namespace Xamarin.Forms.Platform.Tizen { public abstract class CellRenderer : IRegisterable { - const string _heightProperty = "Height"; + const string HeightProperty = "Height"; readonly Dictionary> _realizedNativeViews = new Dictionary>(); Native.ListView.ItemContext _currentItem; @@ -30,7 +30,7 @@ namespace Xamarin.Forms.Platform.Tizen protected virtual bool OnCellPropertyChanged(Cell cell, string property, Dictionary realizedView) { - if (property == _heightProperty) + if (property == HeightProperty) { return true; } -- cgit v1.2.3