[GRASS-SVN] r54561 - grass/trunk/vector/v.overlay

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jan 7 11:25:55 PST 2013


Author: martinl
Date: 2013-01-07 11:25:54 -0800 (Mon, 07 Jan 2013)
New Revision: 54561

Modified:
   grass/trunk/vector/v.overlay/main.c
Log:
v.overlay: more guisections


Modified: grass/trunk/vector/v.overlay/main.c
===================================================================
--- grass/trunk/vector/v.overlay/main.c	2013-01-07 17:21:24 UTC (rev 54560)
+++ grass/trunk/vector/v.overlay/main.c	2013-01-07 19:25:54 UTC (rev 54561)
@@ -124,7 +124,9 @@
     ofield_opt->label = _("Output layer for new category, ainput and binput");
     ofield_opt->description = _("If 0 or not given, "
 				"the category is not written");
-
+    ofield_opt->required = NO;
+    ofield_opt->guisection = _("Attributes");
+    
     snap_opt = G_define_option();
     snap_opt->key = "snap";
     snap_opt->label = _("Snapping threshold for boundaries");
@@ -133,7 +135,8 @@
     snap_opt->answer = "1e-8";
 
     table_flag = G_define_standard_flag(G_FLG_V_TABLE);
-
+    table_flag->guisection = _("Attributes");
+    
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);
 



More information about the grass-commit mailing list