[GRASS-SVN] r63729 - in grass/trunk/vector: v.overlay v.select

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Dec 24 06:41:38 PST 2014


Author: martinl
Date: 2014-12-24 06:41:38 -0800 (Wed, 24 Dec 2014)
New Revision: 63729

Modified:
   grass/trunk/vector/v.overlay/main.c
   grass/trunk/vector/v.overlay/v.overlay.html
   grass/trunk/vector/v.select/args.c
Log:
v.overlay|v.select: fix bug introduced r63717


Modified: grass/trunk/vector/v.overlay/main.c
===================================================================
--- grass/trunk/vector/v.overlay/main.c	2014-12-24 14:27:04 UTC (rev 63728)
+++ grass/trunk/vector/v.overlay/main.c	2014-12-24 14:41:38 UTC (rev 63729)
@@ -70,7 +70,7 @@
 
     field_opt[0] = G_define_standard_option(G_OPT_V_FIELD);
     field_opt[0]->label = _("Layer number or name (vector map A)");
-    field_opt[0]->key = "arc_layer";
+    field_opt[0]->key = "alayer";
 
     type_opt[0] = G_define_standard_option(G_OPT_V_TYPE);
     type_opt[0]->label = _("Feature type (vector map A)");

Modified: grass/trunk/vector/v.overlay/v.overlay.html
===================================================================
--- grass/trunk/vector/v.overlay/v.overlay.html	2014-12-24 14:27:04 UTC (rev 63728)
+++ grass/trunk/vector/v.overlay/v.overlay.html	2014-12-24 14:41:38 UTC (rev 63729)
@@ -37,7 +37,7 @@
 <em>b_</em>) corresponding to <b>ainput</b> and <b>binput</b> map.
 <p>
 If the <i>second</i> number of the <b>olayer</b> option is greater than 0, then the 
-categories of <b>ainput</b> in layer <b>arc_layer</b> are transferred to
+categories of <b>ainput</b> in layer <b>alayer</b> are transferred to
 the output layer with the second number.
 <p>
 If the <i>third</i> number of the <b>olayer</b> option is greater than 0, then the 

Modified: grass/trunk/vector/v.select/args.c
===================================================================
--- grass/trunk/vector/v.select/args.c	2014-12-24 14:27:04 UTC (rev 63728)
+++ grass/trunk/vector/v.select/args.c	2014-12-24 14:41:38 UTC (rev 63729)
@@ -14,7 +14,7 @@
 
     parm->field[0] = G_define_standard_option(G_OPT_V_FIELD);
     parm->field[0]->label = _("Layer number (vector map A)");
-    parm->field[0]->key = "arc_layer";
+    parm->field[0]->key = "alayer";
     parm->field[0]->guisection = _("Selection");
 
     parm->type[0] = G_define_standard_option(G_OPT_V_TYPE);



More information about the grass-commit mailing list