| 691 | } |
| 692 | |
| 693 | void |
| 694 | GuiAppInstance::informationDialog(const std::string & title, |
| 695 | const std::string & message, |
| 696 | bool useHtml) const |
| 697 | { |
| 698 | appPTR->hideSplashScreen(); |
| 699 | { |
| 700 | QMutexLocker l(&_imp->_showingDialogMutex); |
| 701 | ++_imp->_showingDialog; |
| 702 | } |
| 703 | if (!_imp->_gui) { |
| 704 | return; |
| 705 | } |
| 706 | _imp->_gui->informationDialog(title, message, useHtml); |
| 707 | { |
| 708 | QMutexLocker l(&_imp->_showingDialogMutex); |
| 709 | --_imp->_showingDialog; |
| 710 | } |
| 711 | } |
| 712 | |
| 713 | void |
| 714 | GuiAppInstance::informationDialog(const std::string & title, |
nothing calls this directly
no test coverage detected