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-04-24 13:36:54 +0900
commitb1841d48a32cf09ffec6580988c9aa2c818735ad (patch)
treefe4c050585d8622fa400fabdba03e72b88ab68a0
parent5c2767404a298d7e8d2a7ea34558bd46aa815f31 (diff)
downloadxamarin-forms-b1841d48a32cf09ffec6580988c9aa2c818735ad.tar.gz
xamarin-forms-b1841d48a32cf09ffec6580988c9aa2c818735ad.tar.bz2
xamarin-forms-b1841d48a32cf09ffec6580988c9aa2c818735ad.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;
}