------------------------------------------------------------------------------
| 619 | |
| 620 | //------------------------------------------------------------------------------ |
| 621 | void vtkXYPlotActor::RemoveAllDataObjectInputConnections() |
| 622 | { |
| 623 | int idx, num; |
| 624 | |
| 625 | num = this->DataObjectInputConnectionHolder->GetNumberOfInputConnections(0); |
| 626 | this->DataObjectInputConnectionHolder->RemoveAllInputs(); |
| 627 | |
| 628 | for (idx = 0; idx < num; ++idx) |
| 629 | { |
| 630 | delete[] this->SelectedInputScalars[idx]; |
| 631 | this->SelectedInputScalars[idx] = nullptr; |
| 632 | } |
| 633 | this->SelectedInputScalarsComponent->Reset(); |
| 634 | } |
| 635 | |
| 636 | //------------------------------------------------------------------------------ |
| 637 | vtkAlgorithmOutput* vtkXYPlotActor::GetDataObjectInputConnection(unsigned int idx) |
no test coverage detected