------------------------------------------------------------------------------
| 125 | |
| 126 | //------------------------------------------------------------------------------ |
| 127 | vtkPieChartActor::~vtkPieChartActor() |
| 128 | { |
| 129 | this->ConnectionHolder->Delete(); |
| 130 | this->ConnectionHolder = nullptr; |
| 131 | |
| 132 | delete[] this->Title; |
| 133 | this->Title = nullptr; |
| 134 | |
| 135 | delete this->Labels; |
| 136 | this->SetLabelTextProperty(nullptr); |
| 137 | this->SetTitleTextProperty(nullptr); |
| 138 | |
| 139 | this->GlyphSource->Delete(); |
| 140 | |
| 141 | this->Initialize(); |
| 142 | |
| 143 | this->TitleMapper->Delete(); |
| 144 | this->TitleMapper = nullptr; |
| 145 | this->TitleActor->Delete(); |
| 146 | this->TitleActor = nullptr; |
| 147 | |
| 148 | this->WebData->Delete(); |
| 149 | this->WebMapper->Delete(); |
| 150 | this->WebActor->Delete(); |
| 151 | |
| 152 | this->PlotData->Delete(); |
| 153 | this->PlotMapper->Delete(); |
| 154 | this->PlotActor->Delete(); |
| 155 | } |
| 156 | |
| 157 | //------------------------------------------------------------------------------ |
| 158 | void vtkPieChartActor::SetInputConnection(vtkAlgorithmOutput* ao) |
nothing calls this directly
no test coverage detected