Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJose Medrano <josmed@microsoft.com>2022-02-22 20:16:37 +0300
committervs-mobiletools-engineering-service2 <valco@microsoft.com>2022-03-01 18:01:15 +0300
commita86acaadaafd74105738862447953df0d9a1f16c (patch)
treecf11d0b47c309c1b22a37cea71f1df778ee30f8a
parent56c299b6d981979628ffd31ab4ea904ac5c4996f (diff)
Fixes typo
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/BasePathEditorControl.cs6
1 files 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<BasePathEditorControl<T>> weakView;
- public BasePathEditordDelegate (BasePathEditorControl<T> basePathEditorControl)
+ public BasePathEditorDelegate (BasePathEditorControl<T> basePathEditorControl)
{
weakView = new WeakReference<BasePathEditorControl<T>>(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)
};