]> SALOME platform Git repositories - modules/paravis.git/commitdiff
Salome HOME
Porting to 5.1.2
authorAnthony Geay <anthony.geay@edf.fr>
Fri, 14 Oct 2016 13:58:20 +0000 (15:58 +0200)
committerAnthony Geay <anthony.geay@edf.fr>
Fri, 14 Oct 2016 13:58:20 +0000 (15:58 +0200)
src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.cxx
src/Plugins/DifferenceTimesteps/vtkDifferenceTimestepsFilter.h

index ee19ffda377c799cc3001e89b8635b52aad229d5..ead6e86f3f3ab7f2d4463e92ba66c667125b6bd1 100644 (file)
@@ -47,7 +47,7 @@ vtkDataArray* DataTempDiffArray(vtkDataArray* theDataArray,
   // Initialize and appoint a new name
   anOutput->SetNumberOfComponents(theNumComp);
   anOutput->SetNumberOfTuples(theNumTuple);
-  vtkstd::string aNewName = vtkstd::string(thePrefix) + theDataArray->GetName();
+  std::string aNewName = std::string(thePrefix) + theDataArray->GetName();
   anOutput->SetName(aNewName.c_str());
 
   return anOutput;
@@ -401,7 +401,7 @@ vtkDataSet* vtkDifferenceTimestepsFilter::DifferenceDataSet(vtkDataSet* theInput
   vtkDataSet *anOutput = anInput[0]->NewInstance();
   anOutput->CopyStructure(anInput[0]);
 
-  vtkstd::vector<vtkDataArray*> anArrays;
+  std::vector<vtkDataArray*> anArrays;
   vtkDataArray *anOutputArray;
 
   // Compute the difference of the the specified point or cell data array
index 9c5ba1efd20f6fcb08a05e51165796d9dca33ea0..f232cc1d48e7d95ebc44881093db22da1c5b5e89 100644 (file)
@@ -125,7 +125,7 @@ protected:
 
   // Description:
   // Array of time step values.
-  vtkstd::vector<double> TimeStepValues;
+  std::vector<double> TimeStepValues;
 
   // Description:
   // Prefix of array name.