Module: wine Branch: master Commit: 881bea26a49be53a4273aff36261522a3aee08ea URL: http://source.winehq.org/git/wine.git/?a=commit;h=881bea26a49be53a4273aff362...
Author: Eric Pouech eric.pouech@orange.fr Date: Sat Aug 29 14:23:30 2009 +0200
shell32: In shell view, use the expected value for the effect in Drag & Drop operation.
---
dlls/shell32/shlview.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/shlview.c b/dlls/shell32/shlview.c index fc057ed..47167a7 100644 --- a/dlls/shell32/shlview.c +++ b/dlls/shell32/shlview.c @@ -1428,8 +1428,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); }