MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / clearIndicatorLine

Method clearIndicatorLine

src/editor.cpp:577–584  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

575}
576
577void 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
586void RcxEditor::fillIndicatorCols(int indic, int line, int colA, int colB) {
587 long a = posFromCol(m_sci, line, colA);

Callers

nothing calls this directly

Calls 1

lineRangeNoEolFunction · 0.85

Tested by

no test coverage detected