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

Function vtkOutputWindowDisplayWarningText

Common/Core/vtkOutputWindow.cxx:75–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75void 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
85void vtkOutputWindowDisplayGenericWarningText(const char* message)
86{

Callers

nothing calls this directly

Calls 5

HasObserverMethod · 0.80
InvokeEventMethod · 0.80
DisplayWarningTextMethod · 0.45
c_strMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected