[GRASS-SVN] r62084 - grass/branches/releasebranch_7_0/vector/v.select

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Sep 25 07:42:37 PDT 2014


Author: neteler
Date: 2014-09-25 07:42:37 -0700 (Thu, 25 Sep 2014)
New Revision: 62084

Modified:
   grass/branches/releasebranch_7_0/vector/v.select/args.c
   grass/branches/releasebranch_7_0/vector/v.select/main.c
Log:
v.select: attempt to improve parameter description

Modified: grass/branches/releasebranch_7_0/vector/v.select/args.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.select/args.c	2014-09-25 14:42:18 UTC (rev 62083)
+++ grass/branches/releasebranch_7_0/vector/v.select/args.c	2014-09-25 14:42:37 UTC (rev 62084)
@@ -9,7 +9,7 @@
     char *desc;
 
     parm->input[0] = G_define_standard_option(G_OPT_V_INPUT);
-    parm->input[0]->description = _("Name of input vector map (A)");
+    parm->input[0]->description = _("Input vector map from which to select features (A)");
     parm->input[0]->key = "ainput";
 
     parm->field[0] = G_define_standard_option(G_OPT_V_FIELD);
@@ -23,7 +23,7 @@
     parm->type[0]->guisection = _("Selection");
 
     parm->input[1] = G_define_standard_option(G_OPT_V_INPUT);
-    parm->input[1]->description = _("Name of input vector map (B)");
+    parm->input[1]->description = _("Query vector map (B)");
     parm->input[1]->key = "binput";
 
     parm->field[1] = G_define_standard_option(G_OPT_V_FIELD);

Modified: grass/branches/releasebranch_7_0/vector/v.select/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.select/main.c	2014-09-25 14:42:18 UTC (rev 62083)
+++ grass/branches/releasebranch_7_0/vector/v.select/main.c	2014-09-25 14:42:37 UTC (rev 62084)
@@ -7,7 +7,7 @@
  *               Markus Neteler <neteler itc.it>
  *               Martin Landa <landa.martin gmail.com> (GEOS support)
  * PURPOSE:      Select features from one map by features in another map.
- * COPYRIGHT:    (C) 2003-2011 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2003-2014 by the GRASS Development Team
  *
  *               This program is free software under the GNU General
  *               Public License (>=v2). Read the file COPYING that



More information about the grass-commit mailing list