| 696 | } |
| 697 | |
| 698 | LRESULT OnScroll(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& bHandled) |
| 699 | { |
| 700 | // HACK: When scrolling we need to destroy the in-place editor |
| 701 | // because the cursor would become out-of-sync... |
| 702 | _DestroyInplaceWindow(); |
| 703 | bHandled = FALSE; |
| 704 | return 0; |
| 705 | } |
| 706 | |
| 707 | LRESULT OnLButtonDown(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) |
| 708 | { |
nothing calls this directly
no test coverage detected