[GRASS-SVN] r51084 - grass/trunk/vector/v.build

svn_grass at osgeo.org svn_grass at osgeo.org
Fri Mar 16 12:25:39 EDT 2012


Author: martinl
Date: 2012-03-16 09:25:38 -0700 (Fri, 16 Mar 2012)
New Revision: 51084

Modified:
   grass/trunk/vector/v.build/main.c
Log:
v.build: more gui sections


Modified: grass/trunk/vector/v.build/main.c
===================================================================
--- grass/trunk/vector/v.build/main.c	2012-03-16 16:12:38 UTC (rev 51083)
+++ grass/trunk/vector/v.build/main.c	2012-03-16 16:25:38 UTC (rev 51084)
@@ -49,6 +49,7 @@
     err_opt->description =
 	_("Name for output vector map where erroneous vector features are written to");
     err_opt->required = NO;
+    err_opt->guisection = _("Errors");
 
     opt = G_define_option();
     opt->key = "option";
@@ -68,12 +69,14 @@
 	       _("write category index to stdout"),
 	       _("write feature index to stdout (non-native formats only)"));
     opt->descriptions = opt_desc;
-
+    opt->required = YES;
+    
     chk = G_define_flag();
     chk->key = 'e';
     chk->label = _("Extensive checks for topological errors");
     chk->description = _("Perform in-depth checks for topological errors when building topology");
-
+    chk->guisection = _("Errors");
+    
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);
 



More information about the grass-commit mailing list