diff options
author | WonYoung Choi <wy80.choi@samsung.com> | 2017-02-14 17:02:48 +0900 |
---|---|---|
committer | Kangho Hur <kangho.hur@samsung.com> | 2017-03-24 13:19:02 +0900 |
commit | d2ffb5cb3d69cd14339d05f05e0867a35ae2f696 (patch) | |
tree | 39d39b44d79ba71feda645995311ce1f1105b5c0 /Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs | |
parent | 8f5943651f7009cc03f79158086d66cef1a2ebab (diff) | |
download | xamarin-forms-d2ffb5cb3d69cd14339d05f05e0867a35ae2f696.tar.gz xamarin-forms-d2ffb5cb3d69cd14339d05f05e0867a35ae2f696.tar.bz2 xamarin-forms-d2ffb5cb3d69cd14339d05f05e0867a35ae2f696.zip |
Fix const variable name in CellRenderer.cs
Change-Id: I222ecc949729b1cbcc8514a0cdd02e85492c53d2
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs')
-rw-r--r-- | Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
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<Cell, Dictionary<string, EvasObject>> _realizedNativeViews = new Dictionary<Cell, Dictionary<string, EvasObject>>(); Native.ListView.ItemContext _currentItem; @@ -30,7 +30,7 @@ namespace Xamarin.Forms.Platform.Tizen protected virtual bool OnCellPropertyChanged(Cell cell, string property, Dictionary<string, EvasObject> realizedView) { - if (property == _heightProperty) + if (property == HeightProperty) { return true; } |