| 539 | } |
| 540 | |
| 541 | void formatted_string::textbackground(int colour) |
| 542 | { |
| 543 | if (!ops.empty() && ops.back().type == FSOP_BG) |
| 544 | ops.pop_back(); |
| 545 | |
| 546 | ops.emplace_back(colour, false); |
| 547 | } |
| 548 | |
| 549 | void formatted_string::clear() |
| 550 | { |
no test coverage detected