[GRASS-SVN] r67337 - grass/trunk/vector/v.db.select
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Dec 23 03:15:03 PST 2015
Author: mlennert
Date: 2015-12-23 03:15:03 -0800 (Wed, 23 Dec 2015)
New Revision: 67337
Modified:
grass/trunk/vector/v.db.select/main.c
Log:
Group most important parameters in a 'Main' tab
Modified: grass/trunk/vector/v.db.select/main.c
===================================================================
--- grass/trunk/vector/v.db.select/main.c 2015-12-23 11:14:36 UTC (rev 67336)
+++ grass/trunk/vector/v.db.select/main.c 2015-12-23 11:15:03 UTC (rev 67337)
@@ -58,6 +58,7 @@
module->description = _("Prints vector map attributes.");
map_opt = G_define_standard_option(G_OPT_V_MAP);
+ map_opt->guisection = _("Main");
field_opt = G_define_standard_option(G_OPT_V_FIELD);
field_opt->guisection = _("Selection");
@@ -75,7 +76,7 @@
group_opt->guisection = _("Selection");
fs_opt = G_define_standard_option(G_OPT_F_SEP);
- fs_opt->guisection = _("Format");
+ fs_opt->guisection = _("Main");
vs_opt = G_define_standard_option(G_OPT_F_SEP);
vs_opt->key = "vertical_separator";
@@ -89,6 +90,7 @@
file_opt = G_define_standard_option(G_OPT_F_OUTPUT);
file_opt->key = "file";
file_opt->required = NO;
+ file_opt->guisection = _("Main");
file_opt->description =
_("Name for output file (if omitted or \"-\" output to stdout)");
More information about the grass-commit
mailing list