| 120 | } |
| 121 | |
| 122 | bool PageIterator::IsWithinFirstTextlineOfParagraph() const { |
| 123 | PageIterator p_start(*this); |
| 124 | p_start.RestartParagraph(); |
| 125 | return p_start.it_->row() == it_->row(); |
| 126 | } |
| 127 | |
| 128 | void PageIterator::RestartRow() { |
| 129 | it_->restart_row(); |
nothing calls this directly
no test coverage detected