[GRASS-SVN] r63041 - grass/branches/releasebranch_7_0/raster/r.regression.line
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Nov 26 05:36:49 PST 2014
Author: martinl
Date: 2014-11-26 05:36:49 -0800 (Wed, 26 Nov 2014)
New Revision: 63041
Modified:
grass/branches/releasebranch_7_0/raster/r.regression.line/main.c
Log:
r.regression.line: use standardized options (#2409) - (merge r63040 from trunk)
Modified: grass/branches/releasebranch_7_0/raster/r.regression.line/main.c
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.regression.line/main.c 2014-11-26 13:35:58 UTC (rev 63040)
+++ grass/branches/releasebranch_7_0/raster/r.regression.line/main.c 2014-11-26 13:36:49 UTC (rev 63041)
@@ -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