| 128 | } |
| 129 | |
| 130 | void LineMarkers::InsertLine(int line) { |
| 131 | if (markers.Length()) { |
| 132 | markers.Insert(line, 0); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | void LineMarkers::RemoveLine(int line) { |
| 137 | // Retain the markers from the deleted line by oring them into the previous line |
nothing calls this directly
no test coverage detected