| 366 | } |
| 367 | |
| 368 | void UserInterfaceModule::handleCommandExecutionFailure(radiant::CommandExecutionFailedMessage& msg) |
| 369 | { |
| 370 | auto parentWindow = module::GlobalModuleRegistry().moduleExists(MODULE_MAINFRAME) ? |
| 371 | GlobalMainFrame().getWxTopLevelWindow() : nullptr; |
| 372 | |
| 373 | wxutil::Messagebox::ShowError(msg.getMessage(), parentWindow); |
| 374 | } |
| 375 | |
| 376 | void UserInterfaceModule::HandleNotificationMessage(radiant::NotificationMessage& msg) |
| 377 | { |
nothing calls this directly
no test coverage detected