summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWonYoung Choi <wy80.choi@samsung.com>2017-02-14 17:02:48 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-02-14 02:05:50 -0800
commit186053ae4744fa106741ac736805e84c8cf45c6f (patch)
treec52561187812a6a2cad0e68bb55be825f5ec0bf8
parent0b6eb16a9e8af1d947c9aba5a8dca88f83b231db (diff)
downloadxamarin-forms-186053ae4744fa106741ac736805e84c8cf45c6f.tar.gz
xamarin-forms-186053ae4744fa106741ac736805e84c8cf45c6f.tar.bz2
xamarin-forms-186053ae4744fa106741ac736805e84c8cf45c6f.zip
Fix const variable name in CellRenderer.cs
Change-Id: I222ecc949729b1cbcc8514a0cdd02e85492c53d2
-rw-r--r--Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs4
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;
}