From 02d41d1b29ba6e71d8273cd6c53b92922ffcbcff Mon Sep 17 00:00:00 2001 From: Otmane Lahlou <otmane.lahlou@c-s.fr> Date: Fri, 3 Dec 2010 18:24:12 +0100 Subject: [PATCH] ENH : remove the - from the option alias name --- Utils/otbConcatenateImages.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Utils/otbConcatenateImages.cxx b/Utils/otbConcatenateImages.cxx index be59fe4bed..2f8357f083 100644 --- a/Utils/otbConcatenateImages.cxx +++ b/Utils/otbConcatenateImages.cxx @@ -100,14 +100,14 @@ int ConcatenateImages::Describe(ApplicationDescriptor* descriptor) descriptor->SetName("ConcatenateImages"); descriptor->SetDescription("Concatenate n images in a multiband image"); descriptor->AddOutputImage(); - descriptor->AddOptionNParams("InputImagesList", "Images list to concatenate", "-il", true,ApplicationDescriptor::InputImage); + descriptor->AddOptionNParams("InputImagesList", "Images list to concatenate", "il", true,ApplicationDescriptor::InputImage); descriptor->AddOption("OutputPixelType", "OutputPixelType: unsigned char (1), short int (2), int (3), float (4)," " double (5), unsigned short int (12), unsigned int (13); default 2", - "-t", 1, false, ApplicationDescriptor::Integer); + "t", 1, false, ApplicationDescriptor::Integer); descriptor->AddOption("OutputNameList", "Text file containing the name of the images used to generate the output in the same order", - "-ot", 1, false,ApplicationDescriptor::String); + "ot", 1, false,ApplicationDescriptor::String); return EXIT_SUCCESS; } -- GitLab