| 1414 | } |
| 1415 | |
| 1416 | void ScintillaEditView::bookmarkAdd(intptr_t lineno) const { |
| 1417 | if (lineno == -1) |
| 1418 | lineno = getCurrentLineNumber(); |
| 1419 | if (!bookmarkPresent(lineno)) |
| 1420 | this->execute(SCI_MARKERADD, lineno, _SC_MARGE_SYBOLE); |
| 1421 | } |
| 1422 | |
| 1423 | void ScintillaEditView::bookmarkDelete(size_t lineno) const { |
| 1424 | if (lineno == -1) |