------------------------------------------------------------------------------
| 99 | |
| 100 | //------------------------------------------------------------------------------ |
| 101 | vtkAbstractArray::~vtkAbstractArray() |
| 102 | { |
| 103 | if (this->ComponentNames) |
| 104 | { |
| 105 | for (unsigned int i = 0; i < this->ComponentNames->size(); ++i) |
| 106 | { |
| 107 | delete this->ComponentNames->at(i); |
| 108 | } |
| 109 | this->ComponentNames->clear(); |
| 110 | delete this->ComponentNames; |
| 111 | this->ComponentNames = nullptr; |
| 112 | } |
| 113 | |
| 114 | this->SetName(nullptr); |
| 115 | this->SetInformation(nullptr); |
| 116 | } |
| 117 | |
| 118 | //------------------------------------------------------------------------------ |
| 119 | void vtkAbstractArray::SetComponentName(vtkIdType component, const char* name) |
nothing calls this directly
no test coverage detected