]> Creatis software - cpPlugins.git/blobdiff - lib/cpPlugins/Interface/ProcessObject.hxx
...
[cpPlugins.git] / lib / cpPlugins / Interface / ProcessObject.hxx
index 1b691ff0ee2f90d7d4ab096e764884170506b653..9c5b764c5f79e3bacf89fb88e0def60ed48252fb 100644 (file)
@@ -61,6 +61,7 @@ _AddOutput( const std::string& name )
     typename O::Pointer o = O::New( );
     o->SetSource( this );
     this->m_Outputs[ name ] = o;
+    this->Modified( );
 
   } // fi
 }
@@ -77,6 +78,7 @@ _CreateITK( )
     this->SetITK( filter_ptr.GetPointer( ) );
     this->SetVTK( NULL );
     filter = filter_ptr.GetPointer( );
+    this->Modified( );
 
   } // fi
   return( filter );
@@ -94,6 +96,7 @@ _CreateVTK( )
     this->SetITK( NULL );
     this->SetVTK( filter_ptr );
     filter = filter_ptr.GetPointer( );
+    this->Modified( );
 
   } // fi
   return( filter );