From e9af4fe3fff8e7b03d18ae8addb028cf2a547ba3 Mon Sep 17 00:00:00 2001 From: "pinkerton%netscape.com" Date: Wed, 10 Mar 1999 18:11:35 +0000 Subject: [PATCH] fix 95/98 bustage git-svn-id: svn://10.0.0.236/trunk@23528 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/widget/src/windows/nsWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/widget/src/windows/nsWindow.cpp b/mozilla/widget/src/windows/nsWindow.cpp index e3617b67c39..9525faae8b7 100644 --- a/mozilla/widget/src/windows/nsWindow.cpp +++ b/mozilla/widget/src/windows/nsWindow.cpp @@ -1988,7 +1988,7 @@ PRBool nsWindow::ProcessMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT break; case WM_DROPFILES: { - HDROP hDropInfo = (HANDLE) wParam; + HDROP hDropInfo = (HDROP) wParam; UINT nFiles = ::DragQueryFile(hDropInfo, (UINT)-1, NULL, 0); for (UINT iFile = 0; iFile < nFiles; iFile++) {