| 243 | } |
| 244 | |
| 245 | void CGraphBase::DoOnLButtonMove(CPoint point) { |
| 246 | if (m_iEditing == edit_t::Point) { |
| 247 | m_ptLineEnd = point; // // // |
| 248 | ModifyItems(true); |
| 249 | m_ptLineStart = m_ptLineEnd; |
| 250 | } |
| 251 | CursorChanged(GetItemIndex(point)); |
| 252 | } |
| 253 | |
| 254 | void CGraphBase::DoOnRButtonDown(CPoint point) { |
| 255 | m_iEditing = edit_t::Line; |
nothing calls this directly
no test coverage detected