| 279 | } |
| 280 | |
| 281 | void TextLine::set_flags(BitField<TextServer::JustificationFlag> p_flags) |
| 282 | { |
| 283 | if (flags != p_flags) |
| 284 | { |
| 285 | flags = p_flags; |
| 286 | dirty = true; |
| 287 | } |
| 288 | } |
| 289 | |
| 290 | BitField<TextServer::JustificationFlag> TextLine::get_flags() const |
| 291 | { |
no outgoing calls
no test coverage detected