[GRASS-SVN] r63040 - grass/trunk/raster/r.regression.line

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Nov 26 05:35:59 PST 2014


Author: martinl
Date: 2014-11-26 05:35:58 -0800 (Wed, 26 Nov 2014)
New Revision: 63040

Modified:
   grass/trunk/raster/r.regression.line/main.c
Log:
r.regression.line: use standardized options (#2409)

Modified: grass/trunk/raster/r.regression.line/main.c
===================================================================
--- grass/trunk/raster/r.regression.line/main.c	2014-11-26 13:35:20 UTC (rev 63039)
+++ grass/trunk/raster/r.regression.line/main.c	2014-11-26 13:35:58 UTC (rev 63040)
@@ -50,11 +50,11 @@
 
     /* Define the different options */
     input_map1 = G_define_standard_option(G_OPT_R_MAP);
-    input_map1->key = "map1";
+    input_map1->key = "mapx";
     input_map1->description = (_("Map for x coefficient"));
 
     input_map2 = G_define_standard_option(G_OPT_R_MAP);
-    input_map2->key = "map2";
+    input_map2->key = "mapy";
     input_map2->description = (_("Map for y coefficient"));
 
     output_opt = G_define_standard_option(G_OPT_F_OUTPUT);



More information about the grass-commit mailing list