Skip to content
  • brugger's avatar
    · 7311c200
    brugger authored
    I made some more changes for VTK 6.0. Most of the changes work with VTK
    5.8 and 6.0, but a few don't and those are conditionaly compiled. I
    started with versions that Kathleen modified for VTK 6.0 and added
    conditional compiles for code that wouldn't work with VTK 5.8.
    
    The types of changes made were:
    
    1) filter->SetInput(vtkDataObject);
       filter->AddInput(vtkDataObvect);
       filter->RemoveInput(vtkDataObvect);
    
         to
    
       filter->SetInputData(vtkDataObject);
       filter->AddInputData(vtkDataObvect);
       filter->RemoveInputData(vtkDataObvect);
    
    2) filter1->SetInput(filter2->GetOutput());
    
         to
    
       filter1->SetInputConnection(filter2->GetOutputPort());
    
    
    
    git-svn-id: http://visit.ilight.com/svn/visit/trunk/src@20196 18c085ea-50e0-402c-830e-de6fd14e8384
    7311c200