* PAGE_RES_IT::restart_row() * * Move to the beginning (leftmost word) of the current row. *************************************************************************/
| 1635 | * Move to the beginning (leftmost word) of the current row. |
| 1636 | *************************************************************************/ |
| 1637 | WERD_RES *PAGE_RES_IT::restart_row() { |
| 1638 | ROW_RES *row = this->row(); |
| 1639 | if (!row) return NULL; |
| 1640 | for (restart_page(); this->row() != row; forward()) { |
| 1641 | // pass |
| 1642 | } |
| 1643 | return word(); |
| 1644 | } |
| 1645 | |
| 1646 | /************************************************************************* |
| 1647 | * PAGE_RES_IT::forward_paragraph |
no test coverage detected