| 264 | // ------------------ |
| 265 | |
| 266 | TextIterator::TextIterator (Widget *widget, Content::Type mask, bool atEnd, |
| 267 | const char *text): Iterator (widget, mask, atEnd) |
| 268 | { |
| 269 | this->content.type = (atEnd ? Content::END : Content::START); |
| 270 | this->text = (mask & Content::TEXT) ? text : NULL; |
| 271 | } |
| 272 | |
| 273 | TextIterator::TextIterator (TextIterator &it): Iterator (it) |
| 274 | { |
nothing calls this directly
no outgoing calls
no test coverage detected