[GRASS-SVN] r61346 - in grass/branches/releasebranch_7_0: . vector/v.type

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Jul 22 14:47:54 PDT 2014


Author: neteler
Date: 2014-07-22 14:47:53 -0700 (Tue, 22 Jul 2014)
New Revision: 61346

Modified:
   grass/branches/releasebranch_7_0/
   grass/branches/releasebranch_7_0/vector/v.type/main.c
Log:
v.type: from_type and to_type can not be multiple types (trunk, r59646)


Property changes on: grass/branches/releasebranch_7_0
___________________________________________________________________
Modified: svn:mergeinfo
   - /grass/trunk:59505,60219,60278,60610,60807,60835,60936-60937,61275,61288,61290,61292,61294,61301
   + /grass/trunk:59505,59646,60219,60278,60610,60807,60835,60936-60937,61275,61288,61290,61292,61294,61301

Modified: grass/branches/releasebranch_7_0/vector/v.type/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.type/main.c	2014-07-22 21:45:53 UTC (rev 61345)
+++ grass/branches/releasebranch_7_0/vector/v.type/main.c	2014-07-22 21:47:53 UTC (rev 61346)
@@ -50,6 +50,7 @@
     from_opt->key = "from_type";
     from_opt->options = "point,line,boundary,centroid,face,kernel";
     from_opt->required = YES;
+    from_opt->multiple = NO;
     from_opt->description = _("Feature type to convert from");
     from_opt->answer = "line";
 
@@ -57,6 +58,7 @@
     to_opt->key = "to_type";
     to_opt->options = "point,line,boundary,centroid,face,kernel";
     to_opt->required = YES;
+    to_opt->multiple = NO;
     to_opt->description = _("Feature type to convert to");
     to_opt->answer = "boundary";
     



More information about the grass-commit mailing list