X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcpPlugins%2FInterface%2FProcessObject.hxx;h=9c5b764c5f79e3bacf89fb88e0def60ed48252fb;hb=0d184ef7119178103610ad9e9fab83760cb89e06;hp=1b691ff0ee2f90d7d4ab096e764884170506b653;hpb=f69098bd941d8753926760dead2792584eb95f53;p=cpPlugins.git diff --git a/lib/cpPlugins/Interface/ProcessObject.hxx b/lib/cpPlugins/Interface/ProcessObject.hxx index 1b691ff..9c5b764 100644 --- a/lib/cpPlugins/Interface/ProcessObject.hxx +++ b/lib/cpPlugins/Interface/ProcessObject.hxx @@ -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 );