| 56 | ADD_SIGNALS_IMPL_WRAPPER(BannedListChanged); |
| 57 | |
| 58 | bool CClientUIInterface::ThreadSafeMessageBox(const bilingual_str &message, |
| 59 | const std::string &caption, |
| 60 | unsigned int style) { |
| 61 | return g_ui_signals.ThreadSafeMessageBox(message, caption, style) |
| 62 | .value_or(false); |
| 63 | } |
| 64 | bool CClientUIInterface::ThreadSafeQuestion( |
| 65 | const bilingual_str &message, const std::string &non_interactive_message, |
| 66 | const std::string &caption, unsigned int style) { |
no test coverage detected