Changeset 8734 for trunk/src


Ignore:
Timestamp:
Jun 20, 2002, 4:17:35 PM (23 years ago)
Author:
sandervl
Message:

drag & drop fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/ole32/ole2.c

    r8720 r8734  
    28592859{
    28602860    DropTargetNode *pTarget;
     2861    HWND            nexttar = hwnd;
    28612862
    28622863    dprintf(("OLEDD_DragLeave %x", hwnd));
    28632864
    2864     pTarget = OLEDD_FindDropTarget(hwnd);
     2865    do {
     2866        pTarget = OLEDD_FindDropTarget(nexttar);
     2867    }
     2868    while(!pTarget && (nexttar = GetParent(nexttar)) != 0);
    28652869    if(pTarget == NULL) {
    28662870        return FALSE;
Note: See TracChangeset for help on using the changeset viewer.