[GRASS-SVN] r54251 - grass/trunk/vector/v.db.select

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Dec 8 10:15:14 PST 2012


Author: martinl
Date: 2012-12-08 10:15:13 -0800 (Sat, 08 Dec 2012)
New Revision: 54251

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


Modified: grass/trunk/vector/v.db.select/main.c
===================================================================
--- grass/trunk/vector/v.db.select/main.c	2012-12-08 13:54:41 UTC (rev 54250)
+++ grass/trunk/vector/v.db.select/main.c	2012-12-08 18:15:13 UTC (rev 54251)
@@ -8,7 +8,7 @@
  *               
  * PURPOSE:      Print vector attributes
  *               
- * COPYRIGHT:    (C) 2005-2009, 2011 by the GRASS Development Team
+ * COPYRIGHT:    (C) 2005-2009, 2011-2012 by the GRASS Development Team
  *
  *               This program is free software under the GNU General
  *               Public License (>=v2). Read the file COPYING that
@@ -58,9 +58,11 @@
     field_opt = G_define_standard_option(G_OPT_V_FIELD);
 
     col_opt = G_define_standard_option(G_OPT_DB_COLUMNS);
-
+    col_opt->guisection = _("Selection");
+    
     where_opt = G_define_standard_option(G_OPT_DB_WHERE);
-
+    where_opt->guisection = _("Selection");
+    
     fs_opt = G_define_standard_option(G_OPT_F_SEP);
     fs_opt->guisection = _("Format");
 
@@ -87,6 +89,7 @@
     r_flag->key = 'r';
     r_flag->description =
 	_("Print minimal region extent of selected vector features instead of attributes");
+    r_flag->guisection = _("Region");
 
     c_flag = G_define_flag();
     c_flag->key = 'c';



More information about the grass-commit mailing list