Browse Source

r.regression.line: use standardized options (https://trac.osgeo.org/grass/ticket/2409)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63040 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 years ago
parent
commit
fac241fab9
1 changed files with 2 additions and 2 deletions
  1. 2 2
      raster/r.regression.line/main.c

+ 2 - 2
raster/r.regression.line/main.c

@@ -50,11 +50,11 @@ int main(int argc, char *argv[])
 
     /* 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);