| 571 | struct Snapshot |
| 572 | { |
| 573 | ~Snapshot() |
| 574 | { |
| 575 | AreaLine *line = first; |
| 576 | // Delete all the lines in snapshot |
| 577 | while(line) |
| 578 | { |
| 579 | AreaLine *next = line->next; |
| 580 | DeleteLine(line); |
| 581 | line = next; |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | ChangeFlag type; |
| 586 | unsigned int lines, startLine; |
nothing calls this directly
no test coverage detected