]> Creatis software - clitk.git/blobdiff - tools/clitkFooImageGenericFilter.txx
Add missing this->
[clitk.git] / tools / clitkFooImageGenericFilter.txx
index 57895ee3b0e6716840baf071bba84a8f56f1280c..88473a02a0f65e3b234d0eb24c0384912ad9ff90 100644 (file)
@@ -63,14 +63,14 @@ template<class args_info_type>
 void FooImageGenericFilter<args_info_type>::SetArgsInfo(const args_info_type & a)
 {
   mArgsInfo=a;
-  SetIOVerbose(mArgsInfo.verbose_flag);
+  this->SetIOVerbose(mArgsInfo.verbose_flag);
   if (mArgsInfo.imagetypes_flag) this->PrintAvailableImageTypes();
 
   if (mArgsInfo.input_given) {
-    SetInputFilename(mArgsInfo.input_arg);
+    this->SetInputFilename(mArgsInfo.input_arg);
   }
   if (mArgsInfo.output_given) {
-    SetOutputFilename(mArgsInfo.output_arg);
+    this->SetOutputFilename(mArgsInfo.output_arg);
   }
 }
 //--------------------------------------------------------------------