From a86acaadaafd74105738862447953df0d9a1f16c Mon Sep 17 00:00:00 2001 From: Jose Medrano Date: Tue, 22 Feb 2022 18:16:37 +0100 Subject: Fixes typo --- Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs b/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs index d1465cc..12235ca 100644 --- a/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs +++ b/Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs @@ -25,11 +25,11 @@ namespace Xamarin.PropertyEditing.Mac private readonly TextNextResponderDelegate textNextResponderDelegate; - class BasePathEditordDelegate : TextNextResponderDelegate + class BasePathEditorDelegate : TextNextResponderDelegate { WeakReference> weakView; - public BasePathEditordDelegate (BasePathEditorControl basePathEditorControl) + public BasePathEditorDelegate (BasePathEditorControl basePathEditorControl) { weakView = new WeakReference>(basePathEditorControl); } @@ -47,7 +47,7 @@ namespace Xamarin.PropertyEditing.Mac { this.currentTextField = new TextFieldSmallButtonContainer (); - this.textNextResponderDelegate = new BasePathEditordDelegate (this) + this.textNextResponderDelegate = new BasePathEditorDelegate (this) { ProxyResponder = new RowProxyResponder (this, ProxyRowType.SingleView) }; -- cgit v1.2.3