| 236 | } |
| 237 | |
| 238 | void CGraphBase::DoOnLButtonDown(CPoint point) { |
| 239 | m_iEditing = edit_t::Point; |
| 240 | m_ptLineStart = m_ptLineEnd = point; |
| 241 | ModifyItems(true); |
| 242 | CursorChanged(GetItemIndex(point)); |
| 243 | } |
| 244 | |
| 245 | void CGraphBase::DoOnLButtonMove(CPoint point) { |
| 246 | if (m_iEditing == edit_t::Point) { |
nothing calls this directly
no test coverage detected