[GRASS-SVN] r32843 - grass/trunk/raster/r.flow

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Aug 17 14:37:51 EDT 2008


Author: glynn
Date: 2008-08-17 14:37:51 -0400 (Sun, 17 Aug 2008)
New Revision: 32843

Modified:
   grass/trunk/raster/r.flow/main.c
Log:
Don't dynamically create options


Modified: grass/trunk/raster/r.flow/main.c
===================================================================
--- grass/trunk/raster/r.flow/main.c	2008-08-17 18:36:47 UTC (rev 32842)
+++ grass/trunk/raster/r.flow/main.c	2008-08-17 18:37:51 UTC (rev 32843)
@@ -448,14 +448,12 @@
     pskip->key = "skip";
     pskip->type = TYPE_INTEGER;
     pskip->required = NO;
-    pskip->options = skip_opt;
     pskip->description = _("Number of cells between flowlines");
 
     pbound = G_define_option();
     pbound->key = "bound";
     pbound->type = TYPE_INTEGER;
     pbound->required = NO;
-    pbound->options = default_bound_ans;
     pbound->description = _("Maximum number of segments per flowline");
 
     pflout = G_define_option();



More information about the grass-commit mailing list