| 56 | } |
| 57 | |
| 58 | void TessResultRenderer::insert(TessResultRenderer* next) { |
| 59 | if (next == NULL) return; |
| 60 | |
| 61 | TessResultRenderer* remainder = next_; |
| 62 | next_ = next; |
| 63 | if (remainder) { |
| 64 | while (next->next_ != NULL) { |
| 65 | next = next->next_; |
| 66 | } |
| 67 | next->next_ = remainder; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | bool TessResultRenderer::BeginDocument(const char* title) { |
| 72 | if (!happy_) return false; |
no outgoing calls
no test coverage detected