[GRASS-SVN] r53445 - grass/branches/develbranch_6/raster/r.univar2

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Oct 17 11:54:56 PDT 2012


Author: martinl
Date: 2012-10-17 11:54:56 -0700 (Wed, 17 Oct 2012)
New Revision: 53445

Modified:
   grass/branches/develbranch_6/raster/r.univar2/r.univar_main.c
Log:
r.univar: more gui sections


Modified: grass/branches/develbranch_6/raster/r.univar2/r.univar_main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.univar2/r.univar_main.c	2012-10-17 18:49:53 UTC (rev 53444)
+++ grass/branches/develbranch_6/raster/r.univar2/r.univar_main.c	2012-10-17 18:54:56 UTC (rev 53445)
@@ -40,6 +40,7 @@
     param.output_file->required = NO;
     param.output_file->description =
 	_("Name for output file (if omitted or \"-\" output to stdout)");
+    param.output_file->guisection = _("Output settings");
 
     param.percentile = G_define_option();
     param.percentile->key = "percentile";
@@ -50,22 +51,27 @@
     param.percentile->answer = "90";
     param.percentile->description =
 	_("Percentile to calculate (requires extended statistics flag)");
-
+    param.percentile->guisection = _("Extended");
+    
     param.separator = G_define_standard_option(G_OPT_F_SEP);
     param.separator->description = _("Special characters: space, comma, tab");
-
+    param.separator->guisection = _("Formatting");
+    
     param.shell_style = G_define_flag();
     param.shell_style->key = 'g';
     param.shell_style->description =
 	_("Print the stats in shell script style");
+    param.shell_style->guisection = _("Formatting");
 
     param.extended = G_define_flag();
     param.extended->key = 'e';
     param.extended->description = _("Calculate extended statistics");
+    param.extended->guisection = _("Extended");
 
     param.table = G_define_flag();
     param.table->key = 't';
     param.table->description = _("Table output format instead of standard output format");
+    param.table->guisection = _("Formatting");
 
     return;
 }



More information about the grass-commit mailing list