MCPcopy Create free account
hub / github.com/Kitware/VTK / vtkOutputWindowDisplayErrorText

Function vtkOutputWindowDisplayErrorText

Common/Core/vtkOutputWindow.cxx:65–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65void 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
75void vtkOutputWindowDisplayWarningText(const char* message)
76{

Callers

nothing calls this directly

Calls 5

HasObserverMethod · 0.80
InvokeEventMethod · 0.80
DisplayErrorTextMethod · 0.45
c_strMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected