| 259 | } |
| 260 | |
| 261 | void CGraphBase::DoOnRButtonMove(CPoint point) { |
| 262 | if (m_iEditing == edit_t::Line) { |
| 263 | m_ptLineEnd = point; // // // |
| 264 | ModifyItems(true); |
| 265 | } |
| 266 | CursorChanged(GetItemIndex(point)); |
| 267 | } |
| 268 | |
| 269 | void CGraphBase::DoOnRButtonUp(CPoint point) { |
| 270 | m_ptLineStart = { }; |
nothing calls this directly
no test coverage detected