summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Cells/EntryCell.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/Cells/EntryCell.cs')
-rw-r--r--Xamarin.Forms.Core/Cells/EntryCell.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xamarin.Forms.Core/Cells/EntryCell.cs b/Xamarin.Forms.Core/Cells/EntryCell.cs
index cccdcae1..b61f685f 100644
--- a/Xamarin.Forms.Core/Cells/EntryCell.cs
+++ b/Xamarin.Forms.Core/Cells/EntryCell.cs
@@ -2,7 +2,7 @@ using System;
namespace Xamarin.Forms
{
- public class EntryCell : Cell
+ public class EntryCell : Cell, IEntryCellController
{
public static readonly BindableProperty TextProperty = BindableProperty.Create("Text", typeof(string), typeof(EntryCell), null, BindingMode.TwoWay);
@@ -64,7 +64,7 @@ namespace Xamarin.Forms
public event EventHandler Completed;
- internal void SendCompleted()
+ void IEntryCellController.SendCompleted()
{
EventHandler handler = Completed;
if (handler != null)