| 278 | } |
| 279 | |
| 280 | void vtkOutputWindow::DisplayWarningText(const char* txt) |
| 281 | { |
| 282 | vtkScopedSet<MessageTypes> setter(&this->CurrentMessageType, MESSAGE_TYPE_WARNING); |
| 283 | |
| 284 | this->DisplayText(txt); |
| 285 | this->InvokeEvent(vtkCommand::WarningEvent, const_cast<char*>(txt)); |
| 286 | } |
| 287 | |
| 288 | void vtkOutputWindow::DisplayGenericWarningText(const char* txt) |
| 289 | { |