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

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLee Culver <leculver@microsoft.com>2022-02-05 01:14:06 +0300
committerLee Culver <leculver@microsoft.com>2022-02-05 01:14:06 +0300
commit3340e0c02ca51582184b891ead50060b48c0d9f3 (patch)
tree46e70a668dc9cc42eed526b4b81615f2ce0cc0a2 /Xwt.XamMac
parent8b19de6d627d8826a8dc9ea438f0f70163747489 (diff)
Fix naming issue
Diffstat (limited to 'Xwt.XamMac')
-rw-r--r--Xwt.XamMac/Xwt.Mac/ViewBackend.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Xwt.XamMac/Xwt.Mac/ViewBackend.cs b/Xwt.XamMac/Xwt.Mac/ViewBackend.cs
index 26ade8d9..34527b29 100644
--- a/Xwt.XamMac/Xwt.Mac/ViewBackend.cs
+++ b/Xwt.XamMac/Xwt.Mac/ViewBackend.cs
@@ -540,7 +540,7 @@ namespace Xwt.Mac
static DelegateIntPtrIntPtrIntPtrVoid draggingExitedDelegate = new DelegateIntPtrIntPtrIntPtrVoid(DraggingExited);
static DelegateIntPtrIntPtrIntPtrBool prepareForDragOperationDelegate = new DelegateIntPtrIntPtrIntPtrBool(PrepareForDragOperation);
static DelegateIntPtrIntPtrIntPtrBool performDragOperationDelegate = new DelegateIntPtrIntPtrIntPtrBool(PerformDragOperation);
- static DelegateIntPtrIntPtrIntPtrVoid delegateIntPtrIntPtrIntPtrVoid = new DelegateIntPtrIntPtrIntPtrVoid(ConcludeDragOperation);
+ static DelegateIntPtrIntPtrIntPtrVoid concludeDragOperationDelegate = new DelegateIntPtrIntPtrIntPtrVoid(ConcludeDragOperation);
static HashSet<Type> typesConfiguredForDragDrop = new HashSet<Type> ();
static HashSet<Type> typesConfiguredForFocusEvents = new HashSet<Type> ();
@@ -555,7 +555,7 @@ namespace Xwt.Mac
c.AddMethod (draggingExitedSel.Handle, draggingExitedDelegate, "v@:@");
c.AddMethod (prepareForDragOperationSel.Handle, prepareForDragOperationDelegate, "B@:@");
c.AddMethod (performDragOperationSel.Handle, performDragOperationDelegate, "B@:@");
- c.AddMethod (concludeDragOperationSel.Handle, delegateIntPtrIntPtrIntPtrVoid, "v@:@");
+ c.AddMethod (concludeDragOperationSel.Handle, concludeDragOperationDelegate, "v@:@");
}
}
}