diff --git a/Applications/Utils/MeshEdit/ExtractBoundary.cpp b/Applications/Utils/MeshEdit/ExtractBoundary.cpp index 09ae8bd27e26785fbdda931f8db8eaf5d89cffbf..54e13746bc2d0ee45e67cc9d8475058317d0221e 100644 --- a/Applications/Utils/MeshEdit/ExtractBoundary.cpp +++ b/Applications/Utils/MeshEdit/ExtractBoundary.cpp @@ -71,9 +71,10 @@ int main (int argc, char* argv[]) false, "bulk_face_ids", "string"); cmd.add(face_prop_name); - TCLAP::ValueArg<bool> use_ascii_arg( - "", "ascii_output", "use ascii format for data in the vtu output (0=false, 1=true)", false, - false, "boolean value"); + TCLAP::SwitchArg use_ascii_arg("", "ascii-output", + "If the switch is set use ascii instead of " + "binary format for data in the vtu output.", + false); cmd.add(use_ascii_arg); cmd.parse(argc, argv);