From ef64cae5383952eec3783750fd1662a5b662023f Mon Sep 17 00:00:00 2001 From: Jussi Viiri Date: Sun, 4 Jun 2023 21:40:45 +0300 Subject: [PATCH] Delete some unused lines committed by accident --- src/win/window.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/win/window.rs b/src/win/window.rs index 4f9ab8c..3c9c336 100644 --- a/src/win/window.rs +++ b/src/win/window.rs @@ -920,14 +920,3 @@ impl DropTarget { S_OK } } - -impl DropEffect { - pub fn to_dword(&self) -> DWORD { - match self { - DropEffect::Copy => DROPEFFECT_COPY, - DropEffect::Move => DROPEFFECT_MOVE, - DropEffect::Link => DROPEFFECT_LINK, - DropEffect::Scroll => DROPEFFECT_SCROLL, - } - } -}