diff -r ParaView-3.98.1-source/Qt/Components/pqTransferFunctionChartViewWidget.cxx ../Paraview/ParaView-3.98.1-source/Qt/Components/pqTransferFunctionChartViewWidget.cxx
56d55
< #include "vtkIdTypeArray.h"
215,230d213
< // ----------------------------------------------------------------------------
< template<class T>
< QList<T*> pqTransferFunctionChartViewWidget::plots()const
< {
<   QList<T*> res;
<   const vtkIdType count = this->chart()->GetNumberOfPlots();
<   for(vtkIdType i = 0; i < count; ++i)
<     {
<     vtkPlot* plot = this->chart()->GetPlot(i);
<     if (T::SafeDownCast(plot) != 0)
<       {
<       res << T::SafeDownCast(plot);
<       }
<     }
<   return res;
< }
Only in ../Paraview/ParaView-3.98.1-source/Qt/Components: pqTransferFunctionChartViewWidget.cxx~
diff -r ParaView-3.98.1-source/Qt/Components/pqTransferFunctionChartViewWidget.h ../Paraview/ParaView-3.98.1-source/Qt/Components/pqTransferFunctionChartViewWidget.h
35a36,37
> #include "vtkIdTypeArray.h"
> 
149a152,168
> 
> // ----------------------------------------------------------------------------
> template<class T>
> QList<T*> pqTransferFunctionChartViewWidget::plots()const
> {
>   QList<T*> res;
>   const vtkIdType count = this->chart()->GetNumberOfPlots();
>   for(vtkIdType i = 0; i < count; ++i)
>     {
>     vtkPlot* plot = this->chart()->GetPlot(i);
>     if (T::SafeDownCast(plot) != 0)
>       {
>       res << T::SafeDownCast(plot);
>       }
>     }
>   return res;
> }
