------------------------------------------------------------------------------
| 467 | |
| 468 | //------------------------------------------------------------------------------ |
| 469 | void vtkXYPlotActor::RemoveAllDataSetInputConnections() |
| 470 | { |
| 471 | int idx, num; |
| 472 | |
| 473 | num = this->InputConnectionHolder->GetNumberOfInputConnections(0); |
| 474 | this->InputConnectionHolder->RemoveAllInputs(); |
| 475 | |
| 476 | for (idx = 0; idx < num; ++idx) |
| 477 | { |
| 478 | delete[] this->SelectedInputScalars[idx]; |
| 479 | this->SelectedInputScalars[idx] = nullptr; |
| 480 | } |
| 481 | this->SelectedInputScalarsComponent->Reset(); |
| 482 | |
| 483 | this->DataObjectInputConnectionHolder->RemoveAllInputs(); |
| 484 | } |
| 485 | |
| 486 | //------------------------------------------------------------------------------ |
| 487 | void vtkXYPlotActor::RemoveDataSetInput(vtkDataSet* ds, const char* arrayName, int component) |
no test coverage detected