------------------------------------------------------------------------------
| 338 | |
| 339 | //------------------------------------------------------------------------------ |
| 340 | void vtkImageImport::InvokeUpdateInformationCallbacks() |
| 341 | { |
| 342 | if (this->UpdateInformationCallback) |
| 343 | { |
| 344 | tryCatchMacro((this->UpdateInformationCallback)(this->CallbackUserData), |
| 345 | "Calling UpdateInformationCallback: "); |
| 346 | } |
| 347 | |
| 348 | if (this->InvokePipelineModifiedCallbacks()) |
| 349 | { |
| 350 | this->Modified(); |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | //------------------------------------------------------------------------------ |
| 355 | void vtkImageImport::InvokeExecuteInformationCallbacks() |
no test coverage detected