| 39 | } |
| 40 | |
| 41 | void PointRef::swap(const PointRef& r1, const PointRef& r2) |
| 42 | { |
| 43 | assert(r1.m_view); |
| 44 | assert(r2.m_view); |
| 45 | |
| 46 | r1.m_view->swapItems(r1.m_viewIdx, r2.m_viewIdx); |
| 47 | } |
| 48 | |
| 49 | void PointRef::swap(PointRef& r1, PointRef& r2) |
| 50 | { |
no outgoing calls
no test coverage detected