From f9fd097505f581cc237d90bf3de8e13efca53259 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Sat, 17 Oct 2009 19:15:04 +0000 Subject: [PATCH] [Shell32]: in shell view, use the expected value for the effect in Drag & Drop operation patch by svn path=/trunk/; revision=43536 --- reactos/dll/win32/shell32/shlview.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/dll/win32/shell32/shlview.c b/reactos/dll/win32/shell32/shlview.c index acfb45b9df0..9f5624d7a4b 100644 --- a/reactos/dll/win32/shell32/shlview.c +++ b/reactos/dll/win32/shell32/shlview.c @@ -1450,8 +1450,8 @@ static LRESULT ShellView_OnNotify(IShellViewImpl * This, UINT CtlID, LPNMHDR lpn if (pds) { - DWORD dwEffect; - DoDragDrop(pda, pds, dwEffect, &dwEffect); + DWORD dwEffect2; + DoDragDrop(pda, pds, dwEffect, &dwEffect2); } IDataObject_Release(pda); }