| 548 | } |
| 549 | |
| 550 | void Console::add_text(color_value color, const std::string &text) |
| 551 | { |
| 552 | std::lock_guard<std::recursive_mutex> lock{*wlock}; |
| 553 | if (inited) |
| 554 | d->print_text(color, text); |
| 555 | } |
| 556 | |
| 557 | int Console::get_columns(void) |
| 558 | { |
nothing calls this directly
no test coverage detected