| 1133 | } |
| 1134 | |
| 1135 | void ZepBuffer::SetSelection(const GlyphRange& selection) |
| 1136 | { |
| 1137 | m_selection = selection; |
| 1138 | if (m_selection.first > m_selection.second) |
| 1139 | { |
| 1140 | std::swap(m_selection.first, m_selection.second); |
| 1141 | } |
| 1142 | } |
| 1143 | |
| 1144 | void ZepBuffer::AddRangeMarker(std::shared_ptr<RangeMarker> spMarker) |
| 1145 | { |
no outgoing calls
no test coverage detected