]> Creatis software - clitk.git/blobdiff - tools/clitkUnsharpMaskGenericFilter.txx
Ensure compatibility with newer version of VTK9
[clitk.git] / tools / clitkUnsharpMaskGenericFilter.txx
old mode 100755 (executable)
new mode 100644 (file)
index 9d732e3..8f48188
@@ -62,14 +62,14 @@ template<class args_info_type>
 void UnsharpMaskGenericFilter<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);
   }
 }
 //--------------------------------------------------------------------