| 88 | } |
| 89 | |
| 90 | void LineMarkers::InsertLine(Sci::Line line) { |
| 91 | if (markers.Length()) { |
| 92 | markers.Insert(line, 0); |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | void LineMarkers::RemoveLine(Sci::Line line) { |
| 97 | // Retain the markers from the deleted line by oring them into the previous line |
no test coverage detected