| 73 | } |
| 74 | |
| 75 | void vtkOutputWindowDisplayWarningText(const char* message) |
| 76 | { |
| 77 | vtkLogF(WARNING, "%s", message); |
| 78 | if (auto win = vtkOutputWindow::GetInstance()) |
| 79 | { |
| 80 | vtkOutputWindowPrivateAccessor helper_raii(win); |
| 81 | win->DisplayWarningText(message); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | void vtkOutputWindowDisplayGenericWarningText(const char* message) |
| 86 | { |
nothing calls this directly
no test coverage detected