Skip to content

Commit

Permalink
[MWB] - cleaning up DragDrop.cs - microsoft#35155
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeclayton committed Jan 17, 2025
1 parent 2180335 commit 093a5c5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/modules/MouseWithoutBorders/App/Core/DragDrop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ internal static void DragDropStep05Ex(string dragFileName)
MouseDown = false;
}

internal static void DragDropStep06()
private static void DragDropStep06()
{
IsDragging = true;
Logger.LogDebug("DragDropStep06: SendClipboardBeatDragDrop");
Expand Down Expand Up @@ -275,7 +275,7 @@ internal static void DragDropStep09(int wParam)
}
}

internal static void DragDropStep10()
private static void DragDropStep10()
{
Logger.LogDebug("DragDropStep10: Hide the form and get data...");
IsDropping = false;
Expand Down Expand Up @@ -315,7 +315,7 @@ internal static void DragDropStep12()
});
}

internal static void SendCheckExplorerDragDrop()
private static void SendCheckExplorerDragDrop()
{
DATA package = new();
package.Type = PackageType.ExplorerDragDrop;
Expand Down Expand Up @@ -366,18 +366,18 @@ internal static void ChangeDropMachine()
}
}

internal static void SendClipboardBeatDragDrop()
private static void SendClipboardBeatDragDrop()
{
Common.SendPackage(ID.ALL, PackageType.ClipboardDragDrop);
}

internal static void SendDropBegin()
private static void SendDropBegin()
{
Logger.LogDebug("SendDropBegin...");
Common.SendPackage(MachineStuff.dropMachineID, PackageType.ClipboardDragDropOperation);
}

internal static void SendClipboardBeatDragDropEnd()
private static void SendClipboardBeatDragDropEnd()
{
if (MachineStuff.desMachineID != Common.MachineID)
{
Expand Down

0 comments on commit 093a5c5

Please sign in to comment.