summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKangho Hur <kangho.hur@samsung.com>2017-01-15 17:21:41 -0800
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2017-01-15 17:21:42 -0800
commite69a2d3a9fb468c65cdc9dbd88f81e3e5e5586de (patch)
tree4b68ac6d71e95ab4b1f7cd85a1dfbf6197f538bb
parentf991c3405eda605ad7131fd69a8dda3beb6ebc1d (diff)
parentec84f9eb583def705dac4827058e9c55a87281d9 (diff)
downloadxamarin-forms-e69a2d3a9fb468c65cdc9dbd88f81e3e5e5586de.tar.gz
xamarin-forms-e69a2d3a9fb468c65cdc9dbd88f81e3e5e5586de.tar.bz2
xamarin-forms-e69a2d3a9fb468c65cdc9dbd88f81e3e5e5586de.zip
Merge "Change two methods to public for extension of CellRenderer" into tizen
-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 94899011..c74d2e3e 100644
--- a/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs
+++ b/Xamarin.Forms.Platform.Tizen/Cells/CellRenderer.cs
@@ -83,7 +83,7 @@ namespace Xamarin.Forms.Platform.Tizen
return nativeSpan;
}
- internal void SendCellPropertyChanged(Cell cell, GenListItem item, string property)
+ public void SendCellPropertyChanged(Cell cell, GenItem item, string property)
{
Dictionary<string, EvasObject> realizedView = null;
_realizedNativeViews.TryGetValue(cell, out realizedView);
@@ -103,7 +103,7 @@ namespace Xamarin.Forms.Platform.Tizen
}
}
- internal void SendUnrealizedCell(Cell cell)
+ public void SendUnrealizedCell(Cell cell)
{
Dictionary<string, EvasObject> realizedView = null;
_realizedNativeViews.TryGetValue(cell, out realizedView);