| 95 | } |
| 96 | |
| 97 | void CFrameSelection::Normalize() { |
| 98 | if (m_cpStart.m_iFrame > m_cpEnd.m_iFrame) |
| 99 | std::swap(m_cpStart.m_iFrame, m_cpEnd.m_iFrame); |
| 100 | if (m_cpStart.m_iChannel > m_cpEnd.m_iChannel) |
| 101 | std::swap(m_cpStart.m_iChannel, m_cpEnd.m_iChannel); |
| 102 | } |
| 103 | |
| 104 | void CFrameSelection::Normalize(CFrameCursorPos &Begin, CFrameCursorPos &End) const |
| 105 | { |
no test coverage detected