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-03-24 13:19:00 +0900
commit6b44c214ff22040fd9648280882f469a2c369331 (patch)
tree18d4887de1a85a51c7b4ebdb9726133343538eaa
parent7c57fd77477ce9a50f704980790770c6025eeae2 (diff)
downloadxamarin-forms-6b44c214ff22040fd9648280882f469a2c369331.tar.gz
xamarin-forms-6b44c214ff22040fd9648280882f469a2c369331.tar.bz2
xamarin-forms-6b44c214ff22040fd9648280882f469a2c369331.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);