| 1844 | } |
| 1845 | |
| 1846 | int RcxEditor::editEndCol() const { |
| 1847 | QString lineText = getLineText(m_sci, m_editState.line); |
| 1848 | int delta = lineText.size() - m_editState.linelenAfterReplace; |
| 1849 | return m_editState.spanStart + m_editState.original.size() + delta; |
| 1850 | } |
| 1851 | |
| 1852 | void RcxEditor::clampEditSelection() { |
| 1853 | if (!m_editState.active) return; |
nothing calls this directly
no test coverage detected