Skip to content

Commit

Permalink
Change Example filter 1 input file parameter to not accept all extens…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
jmarquisbq committed Apr 17, 2024
1 parent 925781a commit 203f08e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Plugins/TestOne/src/TestOne/Filters/ExampleFilter1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ Parameters ExampleFilter1::parameters() const
params.insert(std::make_unique<FileSystemPathParameter>(k_InputDir_Key, "Input Directory", "Example input directory help text", "Data", FileSystemPathParameter::ExtensionsType{},
FileSystemPathParameter::PathType::InputDir));
params.insert(std::make_unique<FileSystemPathParameter>(k_InputFile_Key, "Input File", "Example input file help text", "/opt/local/bin/ninja", FileSystemPathParameter::ExtensionsType{},
FileSystemPathParameter::PathType::InputFile, true));
params.insert(std::make_unique<FileSystemPathParameter>(k_OutputDir_Key, "Ouptut Directory", "Example output directory help text", "Output Data", FileSystemPathParameter::ExtensionsType{},
FileSystemPathParameter::PathType::InputFile, false));
params.insert(std::make_unique<FileSystemPathParameter>(k_OutputDir_Key, "Output Directory", "Example output directory help text", "Output Data", FileSystemPathParameter::ExtensionsType{},
FileSystemPathParameter::PathType::OutputDir));
params.insert(std::make_unique<FileSystemPathParameter>(k_OutputFile_Key, "Output File", "Example output file help text", "", FileSystemPathParameter::ExtensionsType{},
FileSystemPathParameter::PathType::OutputFile));
Expand Down

0 comments on commit 203f08e

Please sign in to comment.