| 722 | } |
| 723 | |
| 724 | bool RichTextarea::LineIterator::GoForward() |
| 725 | { |
| 726 | AreaLine *curr = (AreaLine*)line; |
| 727 | line = (void*)curr->next; |
| 728 | number++; |
| 729 | return line ? true : false; |
| 730 | } |
| 731 | |
| 732 | void RichTextarea::LineIterator::SetStyle(unsigned int style) |
| 733 | { |
no outgoing calls
no test coverage detected