summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSungHyun Min <shyun.min@samsung.com>2017-01-13 19:38:37 +0900
committerKangho Hur <kangho.hur@samsung.com>2017-02-03 13:28:04 +0900
commitbf113e7a2681142d965349a66fbe78cb0b36ae7f (patch)
tree940efe6b0041e121ba935df351443a79475a629b
parent789c00b92486d8e25c9e624689c0e8bc584c3bc2 (diff)
downloadxamarin-forms-bf113e7a2681142d965349a66fbe78cb0b36ae7f.tar.gz
xamarin-forms-bf113e7a2681142d965349a66fbe78cb0b36ae7f.tar.bz2
xamarin-forms-bf113e7a2681142d965349a66fbe78cb0b36ae7f.zip
Change two methods to public for extension of CellRenderer
- SendCellPropertyChanged, SendUnrealizedCell Change-Id: I48cdbed3151d301f5e889076cbe2276463647387
-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);