| 575 | } |
| 576 | |
| 577 | void RcxEditor::clearIndicatorLine(int indic, int line) { |
| 578 | if (line < 0) return; |
| 579 | long start, len; |
| 580 | lineRangeNoEol(m_sci, line, start, len); |
| 581 | if (len <= 0) return; |
| 582 | m_sci->SendScintilla(QsciScintillaBase::SCI_SETINDICATORCURRENT, indic); |
| 583 | m_sci->SendScintilla(QsciScintillaBase::SCI_INDICATORCLEARRANGE, start, len); |
| 584 | } |
| 585 | |
| 586 | void RcxEditor::fillIndicatorCols(int indic, int line, int colA, int colB) { |
| 587 | long a = posFromCol(m_sci, line, colA); |
nothing calls this directly
no test coverage detected