| 1469 | std::mutex mark_mutex; |
| 1470 | |
| 1471 | QString 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 | |
| 1479 | void ScintillaEditView::deleteMarkedline(int ln) |
| 1480 | { |
nothing calls this directly
no test coverage detected