| 4422 | } |
| 4423 | |
| 4424 | void CMergeEditView::SetSelection(const CEPoint& ptStart, const CEPoint& ptEnd, bool bUpdateView) |
| 4425 | { |
| 4426 | CEPoint ptStartNew = ptStart; |
| 4427 | CEPoint ptEndNew = ptEnd; |
| 4428 | if (m_bDetailView) |
| 4429 | { |
| 4430 | // ensure we remain in diff |
| 4431 | EnsureInDiff(ptStartNew); |
| 4432 | EnsureInDiff(ptEndNew); |
| 4433 | } |
| 4434 | CCrystalTextView::SetSelection(ptStartNew, ptEndNew, bUpdateView); |
| 4435 | } |
| 4436 | |
| 4437 | void CMergeEditView::ScrollToSubLine(int nNewTopLine, bool bNoSmoothScroll /*= FALSE*/, bool bTrackScrollBar /*= TRUE*/) |
| 4438 | { |
no outgoing calls
no test coverage detected