| 1715 | |
| 1716 | |
| 1717 | intptr_t ScintillaEditView::searchInTarget(QByteArray& text2Find,size_t fromPos, size_t toPos) const |
| 1718 | { |
| 1719 | execute(SCI_SETTARGETRANGE, fromPos, toPos); |
| 1720 | return execute(SCI_SEARCHINTARGET, text2Find.size(), reinterpret_cast<sptr_t>(text2Find.data())); |
| 1721 | } |
| 1722 | |
| 1723 | intptr_t ScintillaEditView::replaceTargetRegExMode(QByteArray& re, intptr_t fromTargetPos, intptr_t toTargetPos) const |
| 1724 | { |
no test coverage detected