Commit 03e89917 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

winex11: Use passed point in handle_position_event.

parent ac9b6358
......@@ -185,7 +185,7 @@ static BOOL handle_position_event( struct dnd_position_event_params *params )
int accept = 0; /* Assume we're not accepting */
IDropTarget *dropTarget = NULL;
DWORD effect = params->effect;
POINTL pointl;
POINTL pointl = { .x = params->point.x, .y = params->point.y };
HWND targetWindow;
HRESULT hr;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment