Wouldn't a move be preferred in all cases when doing
drag and drop? I can't think of a case where copy would
be useful.
297,301d296
< bool moveIsAllowed = isFSFolder;
<
< DWORD effectsOK = DROPEFFECT_COPY;
< if (moveIsAllowed)
< effectsOK |= DROPEFFECT_MOVE;
304c299
< HRESULT res = DoDragDrop(dataObject,
dropSource, effectsOK, &effect);
---
> HRESULT res = DoDragDrop(dataObject,
dropSource, DROPEFFECT_MOVE, &effect);
Modified