MCPcopy Create free account
hub / github.com/cxasm/notepad-- / getMarkedLine

Method getMarkedLine

src/scintillaeditview.cpp:1471–1477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1469std::mutex mark_mutex;
1470
1471QString ScintillaEditView::getMarkedLine(int ln)
1472{
1473 auto lineLen = this->execute(SCI_LINELENGTH, ln);
1474 auto lineBegin = this->execute(SCI_POSITIONFROMLINE, ln);
1475
1476 return this->getGenericTextAsQString(lineBegin, lineBegin + lineLen);
1477}
1478
1479void ScintillaEditView::deleteMarkedline(int ln)
1480{

Callers

nothing calls this directly

Calls 2

executeMethod · 0.95

Tested by

no test coverage detected