| 89 | } |
| 90 | |
| 91 | ui::IDialog::Result Messagebox::Show(const std::string& title, |
| 92 | const std::string& text, ui::IDialog::MessageType type, wxWindow* parent) |
| 93 | { |
| 94 | Messagebox msg(title, text, type, parent); |
| 95 | |
| 96 | return msg.run(); |
| 97 | } |
| 98 | |
| 99 | void Messagebox::ShowError(const std::string& errorText, wxWindow* parent) |
| 100 | { |
no test coverage detected