| 23 | } |
| 24 | |
| 25 | void GenericMessageDialog::information(std::string const& title, std::string const& message) |
| 26 | { |
| 27 | _title = title; |
| 28 | _message = message; |
| 29 | _dialogType = DialogType::Information; |
| 30 | log(Priority::Important, "message dialog showing: '" + message + "'"); |
| 31 | |
| 32 | AlienDialog::open(); |
| 33 | changeTitle(title); |
| 34 | } |
| 35 | |
| 36 | void GenericMessageDialog::information(std::string const& title, std::vector<PersisterErrorInfo> const& errors) |
| 37 | { |
no test coverage detected