[GRASS-SVN] r65454 - grass/branches/releasebranch_7_0/vector/v.select
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jun 12 14:47:27 PDT 2015
Author: neteler
Date: 2015-06-12 14:47:27 -0700 (Fri, 12 Jun 2015)
New Revision: 65454
Modified:
grass/branches/releasebranch_7_0/vector/v.select/args.c
Log:
v.select: add vector types to G_OPT_V_TYPE (sync to trunk)
Modified: grass/branches/releasebranch_7_0/vector/v.select/args.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.select/args.c 2015-06-12 21:40:42 UTC (rev 65453)
+++ grass/branches/releasebranch_7_0/vector/v.select/args.c 2015-06-12 21:47:27 UTC (rev 65454)
@@ -20,6 +20,7 @@
parm->type[0] = G_define_standard_option(G_OPT_V_TYPE);
parm->type[0]->label = _("Feature type (vector map A)");
parm->type[0]->key = "atype";
+ parm->type[0]->answer = "point,line,area";
parm->type[0]->guisection = _("Selection");
parm->input[1] = G_define_standard_option(G_OPT_V_INPUT);
@@ -34,6 +35,7 @@
parm->type[1] = G_define_standard_option(G_OPT_V_TYPE);
parm->type[1]->label = _("Feature type (vector map B)");
parm->type[1]->key = "btype";
+ parm->type[1]->answer = "point,line,area";
parm->type[1]->guisection = _("Selection");
parm->output = G_define_standard_option(G_OPT_V_OUTPUT);
More information about the grass-commit
mailing list