| 63 | } |
| 64 | |
| 65 | void vtkOutputWindowDisplayErrorText(const char* message) |
| 66 | { |
| 67 | vtkLogF(ERROR, "%s", message); |
| 68 | if (auto win = vtkOutputWindow::GetInstance()) |
| 69 | { |
| 70 | vtkOutputWindowPrivateAccessor helper_raii(win); |
| 71 | win->DisplayErrorText(message); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void vtkOutputWindowDisplayWarningText(const char* message) |
| 76 | { |
nothing calls this directly
no test coverage detected