------------------------------------------------------------------------------
| 315 | |
| 316 | //------------------------------------------------------------------------------ |
| 317 | void vtkView::UnRegisterProgress(vtkObject* algorithm) |
| 318 | { |
| 319 | if (algorithm) |
| 320 | { |
| 321 | std::map<vtkObject*, std::string>::iterator iter = |
| 322 | this->Internal->RegisteredProgress.find(algorithm); |
| 323 | if (iter != this->Internal->RegisteredProgress.end()) |
| 324 | { |
| 325 | this->Internal->RegisteredProgress.erase(iter); |
| 326 | algorithm->RemoveObservers(vtkCommand::ProgressEvent, this->Observer); |
| 327 | } |
| 328 | } |
| 329 | } |
| 330 | |
| 331 | //------------------------------------------------------------------------------ |
| 332 | void vtkView::Update() |
no test coverage detected