| 252 | } |
| 253 | |
| 254 | void CGraphBase::DoOnRButtonDown(CPoint point) { |
| 255 | m_iEditing = edit_t::Line; |
| 256 | m_ptLineStart = m_ptLineEnd = point; |
| 257 | ModifyItems(true); |
| 258 | CursorChanged(GetItemIndex(point)); |
| 259 | } |
| 260 | |
| 261 | void CGraphBase::DoOnRButtonMove(CPoint point) { |
| 262 | if (m_iEditing == edit_t::Line) { |
nothing calls this directly
no test coverage detected