[GRASS-SVN] r34037 - grass/branches/develbranch_6/raster/r.neighbors
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Oct 28 17:49:26 EDT 2008
Author: martinl
Date: 2008-10-28 17:49:26 -0400 (Tue, 28 Oct 2008)
New Revision: 34037
Modified:
grass/branches/develbranch_6/raster/r.neighbors/main.c
Log:
r.neighbors (cosmetics): more gui sections
Modified: grass/branches/develbranch_6/raster/r.neighbors/main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.neighbors/main.c 2008-10-28 16:51:25 UTC (rev 34036)
+++ grass/branches/develbranch_6/raster/r.neighbors/main.c 2008-10-28 21:49:26 UTC (rev 34037)
@@ -129,6 +129,7 @@
}
parm.method->options = p;
parm.method->description = _("Neighborhood operation");
+ parm.method->guisection = _("Neighborhood");
parm.size = G_define_option();
parm.size->key = "size";
@@ -136,6 +137,7 @@
parm.size->required = NO;
parm.size->description = _("Neighborhood size");
parm.size->answer = "3";
+ parm.size->guisection = _("Neighborhood");
parm.title = G_define_option();
parm.title->key = "title";
@@ -163,6 +165,7 @@
flag.circle = G_define_flag();
flag.circle->key = 'c';
flag.circle->description = _("Use circular neighborhood");
+ flag.circle->guisection = _("Neighborhood");
if (G_parser(argc, argv))
exit(EXIT_FAILURE);
More information about the grass-commit
mailing list