| 103 | } |
| 104 | |
| 105 | bool WindowManager::showSimpleError(const QString& errorMessage) { |
| 106 | if (errorMessage.isEmpty()) { |
| 107 | return false; |
| 108 | } |
| 109 | init(); |
| 110 | auto alertWindow = AlertWindow(app.get()); |
| 111 | return alertWindow.showErrors({}, errorMessage); |
| 112 | } |
| 113 | |
| 114 | bool WindowManager::showPAGViewerInstallDialog(const std::string& pagFilePath) { |
| 115 | PAGViewerInstallModel installModel; |
no test coverage detected