| 3492 | } |
| 3493 | |
| 3494 | void |
| 3495 | Dialogs::informationDialog(const std::string & title, |
| 3496 | const std::string & message, |
| 3497 | bool useHtml) |
| 3498 | { |
| 3499 | appPTR->hideSplashScreen(); |
| 3500 | AppInstancePtr topLvlInstance = appPTR->getTopLevelInstance(); |
| 3501 | if ( topLvlInstance && !appPTR->isBackground() ) { |
| 3502 | topLvlInstance->informationDialog(title, message, useHtml); |
| 3503 | } else { |
| 3504 | std::cout << "INFO: " << title << ":" << message << std::endl; |
| 3505 | } |
| 3506 | } |
| 3507 | |
| 3508 | void |
| 3509 | Dialogs::informationDialog(const std::string & title, |
nothing calls this directly
no test coverage detected