]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ProcessObject.hxx
MAC compilation issues solved... Now some tests please
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.hxx
index ccddc04d9506ce3369b4e09f01c0f48d069107b6..54c2f37bb8ede077d0f7238dbf760f5ac3382ec3 100644 (file)
@@ -74,8 +74,8 @@ _CreateITK( )
   if( filter == NULL )
   {
     typename F::Pointer filter_ptr = F::New( );
-    this->SetITK( filter_ptr.GetPointer( ) );
-    this->SetVTK( NULL );
+    this->m_ITKObject = filter_ptr;
+    this->m_VTKObject = NULL;
     filter = filter_ptr.GetPointer( );
     this->Modified( );
 
@@ -92,8 +92,8 @@ _CreateVTK( )
   if( filter == NULL )
   {
     vtkSmartPointer< F > filter_ptr = vtkSmartPointer< F >::New( );
-    this->SetITK( NULL );
-    this->SetVTK( filter_ptr );
+    this->m_ITKObject = NULL;
+    this->m_VTKObject = filter_ptr;
     filter = filter_ptr.GetPointer( );
     this->Modified( );