| 3364 | } |
| 3365 | |
| 3366 | DROPEFFECT CFamiTrackerView::OnDragOver(COleDataObject* pDataObject, DWORD dwKeyState, CPoint point) |
| 3367 | { |
| 3368 | TRACE(L"OLE: OnDragOver\n"); |
| 3369 | |
| 3370 | // Update drag'n'drop cursor |
| 3371 | if (m_nDropEffect != DROPEFFECT_NONE) { |
| 3372 | m_pPatternEditor->UpdateDrag(point); |
| 3373 | InvalidateCursor(); |
| 3374 | } |
| 3375 | |
| 3376 | return m_nDropEffect; |
| 3377 | } |
| 3378 | |
| 3379 | BOOL CFamiTrackerView::OnDrop(COleDataObject* pDataObject, DROPEFFECT dropEffect, CPoint point) |
| 3380 | { |
nothing calls this directly
no test coverage detected