| 1641 | } |
| 1642 | |
| 1643 | const char *Document::SubstituteByPosition(const char *text, int *length) { |
| 1644 | if (regex) |
| 1645 | return regex->SubstituteByPosition(this, text, length); |
| 1646 | else |
| 1647 | return 0; |
| 1648 | } |
| 1649 | |
| 1650 | int Document::LinesTotal() const { |
| 1651 | return cb.Lines(); |
no test coverage detected