]> Creatis software - clitk.git/blobdiff - segmentation/clitkConnectedComponentLabelingGenericFilter.txx
Merge branch 'master' of tux.creatis.insa-lyon.fr:clitk
[clitk.git] / segmentation / clitkConnectedComponentLabelingGenericFilter.txx
index 89154a552c49f9b89a14078c4b63570ec29f6b32..1a5ab247e5eb158a095d7ce515e555c99610ee08 100644 (file)
@@ -57,10 +57,10 @@ template<class ArgsInfoType>
 void clitk::ConnectedComponentLabelingGenericFilter<ArgsInfoType>::SetArgsInfo(const ArgsInfoType & a) 
 {
   mArgsInfo=a;
-  SetIOVerbose(mArgsInfo.verbose_flag);
+  this->SetIOVerbose(mArgsInfo.verbose_flag);
   if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes();
-  if (mArgsInfo.input_given)   AddInputFilename(mArgsInfo.input_arg);
-  if (mArgsInfo.output_given)  SetOutputFilename(mArgsInfo.output_arg);
+  if (mArgsInfo.input_given)   this->AddInputFilename(mArgsInfo.input_arg);
+  if (mArgsInfo.output_given)  this->SetOutputFilename(mArgsInfo.output_arg);
 }
 //--------------------------------------------------------------------