소스 검색

i.ifft: use standardized options (https://trac.osgeo.org/grass/ticket/2409)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@62964 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 년 전
부모
커밋
217585725f
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      imagery/i.ifft/main.c

+ 2 - 3
imagery/i.ifft/main.c

@@ -82,15 +82,14 @@ int main(int argc, char *argv[])
 
     /* define options */
     opt.real = G_define_standard_option(G_OPT_R_INPUT);
-    opt.real->key = "real_image";
+    opt.real->key = "real";
     opt.real->description = _("Name of input raster map (image fft, real part)");
 
     opt.imag = G_define_standard_option(G_OPT_R_INPUT);
-    opt.imag->key = "imaginary_image";
+    opt.imag->key = "imaginary";
     opt.imag->description = _("Name of input raster map (image fft, imaginary part");
 
     opt.orig = G_define_standard_option(G_OPT_R_OUTPUT);
-    opt.orig->key = "output_image";
     opt.orig->description = _("Name for output raster map");
     
     /*call parser */