Changeset 1357 for trunk/dll/dircnrs.c


Ignore:
Timestamp:
Dec 27, 2008, 12:57:18 AM (17 years ago)
Author:
Gregg Young
Message:

Fixed DROPHELP issues Tickets 320 & 324

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/dircnrs.c

    r1350 r1357  
    5252  29 Nov 08 GKY Remove or replace with a mutex semaphore DosEnterCriSec where appropriate.
    5353  10 Dec 08 SHL Integrate exception handler support
     54  26 Dec 08 GKY Fixed DROPHELP to check for copy as default is action is DO_DEFAULT
    5455
    5556***********************************************************************/
     
    29132914          else {
    29142915            numitems = DrgQueryDragitemCount(pDInfo);
    2915             usOperation = pDInfo->usOperation;
     2916            usOperation = pDInfo->usOperation;
     2917            if (usOperation == DO_DEFAULT)
     2918              usOperation = fCopyDefault ? DO_COPY : DO_MOVE;
    29162919            FreeDragInfoData(hwnd, pDInfo);
    29172920            saymsg(MB_ENTER | MB_ICONASTERISK,
     
    29252928                   pci ? pci->pszFileName : NullStr,
    29262929                   pci ? " " : NullStr,
    2927                    GetPString((usOperation == DO_COPY) ?
    2928                               IDS_COPYTEXT :
     2930                   GetPString((usOperation == DO_MOVE) ?
     2931                              IDS_MOVETEXT :
    29292932                              (usOperation == DO_LINK) ?
    2930                               IDS_LINKTEXT : IDS_MOVETEXT));
     2933                              IDS_LINKTEXT : IDS_COPYTEXT));
    29312934          }
    29322935        }
Note: See TracChangeset for help on using the changeset viewer.