| 11 | #include "StyleRepository.h" |
| 12 | |
| 13 | void GenericMessageDialog::processIntern() |
| 14 | { |
| 15 | switch (_dialogType) { |
| 16 | case DialogType::Information: |
| 17 | processInformation(); |
| 18 | break; |
| 19 | case DialogType::YesNo: |
| 20 | processYesNo(); |
| 21 | break; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | void GenericMessageDialog::information(std::string const& title, std::string const& message) |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected