| 1665 | } |
| 1666 | |
| 1667 | void DiffTextWindow::getSelectionRange(LineRef* pFirstLine, LineRef* pLastLine, e_CoordType coordType) const |
| 1668 | { |
| 1669 | if(pFirstLine) |
| 1670 | *pFirstLine = d->convertLineOnScreenToLineInSource(d->m_selection.beginLine(), coordType, true); |
| 1671 | if(pLastLine) |
| 1672 | *pLastLine = d->convertLineOnScreenToLineInSource(d->m_selection.endLine(), coordType, false); |
| 1673 | } |
| 1674 | |
| 1675 | void DiffTextWindow::convertSelectionToD3LCoords() const |
| 1676 | { |
no test coverage detected