浏览代码

v.overlay|v.select: fix bug introduced https://trac.osgeo.org/grass/changeset/63717

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63729 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 10 年之前
父节点
当前提交
e20bfbfd58
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      vector/v.overlay/main.c
  2. 1 1
      vector/v.overlay/v.overlay.html
  3. 1 1
      vector/v.select/args.c

+ 1 - 1
vector/v.overlay/main.c

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

+ 1 - 1
vector/v.overlay/v.overlay.html

@@ -37,7 +37,7 @@ number. The original column names have a prefix (<em>a_</em> and
 <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 

+ 1 - 1
vector/v.select/args.c

@@ -14,7 +14,7 @@ void parse_options(struct GParm *parm, struct GFlag *flag)
 
     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);