[GRASS-SVN] r68854 - grass/branches/releasebranch_7_2/raster/r.lake

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Jul 4 05:42:43 PDT 2016


Author: martinl
Date: 2016-07-04 05:42:42 -0700 (Mon, 04 Jul 2016)
New Revision: 68854

Modified:
   grass/branches/releasebranch_7_2/raster/r.lake/main.c
Log:
r.lake: more guisections (merge r68853 from trunk)

Modified: grass/branches/releasebranch_7_2/raster/r.lake/main.c
===================================================================
--- grass/branches/releasebranch_7_2/raster/r.lake/main.c	2016-07-04 12:41:39 UTC (rev 68853)
+++ grass/branches/releasebranch_7_2/raster/r.lake/main.c	2016-07-04 12:42:42 UTC (rev 68854)
@@ -164,6 +164,7 @@
     lake_opt = G_define_standard_option(G_OPT_R_OUTPUT);
     lake_opt->key = "lake";
     lake_opt->required = NO;
+    lake_opt->guisection = _("Output");
 
     sdxy_opt = G_define_standard_option(G_OPT_M_COORDS);
     sdxy_opt->label = _("Seed point coordinates");
@@ -171,6 +172,7 @@
 	" map have to be specified");
     sdxy_opt->required = NO;
     sdxy_opt->multiple = NO;
+    sdxy_opt->guisection = _("Seed");
 
     smap_opt = G_define_standard_option(G_OPT_R_MAP);
     smap_opt->key = "seed";
@@ -179,6 +181,7 @@
     smap_opt->description =
 	_("Either this parameter or a coordinates pair have to be specified");
     smap_opt->required = NO;
+    smap_opt->guisection = _("Seed");
 
     negative_flag = G_define_flag();
     negative_flag->key = 'n';
@@ -189,6 +192,7 @@
     overwrite_flag->key = 'o';
     overwrite_flag->description =
 	_("Overwrite seed map with result (lake) map");
+    overwrite_flag->guisection = _("Output");
 
     if (G_parser(argc, argv))	/* Returns 0 if successful, non-zero otherwise */
 	exit(EXIT_FAILURE);



More information about the grass-commit mailing list