[GRASS-SVN] r49511 - grass/trunk/raster/r.cost

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Dec 4 00:53:03 EST 2011


Author: hamish
Date: 2011-12-03 21:53:03 -0800 (Sat, 03 Dec 2011)
New Revision: 49511

Modified:
   grass/trunk/raster/r.cost/main.c
Log:
avoid duplicate & generic standard option description

Modified: grass/trunk/raster/r.cost/main.c
===================================================================
--- grass/trunk/raster/r.cost/main.c	2011-12-04 04:29:17 UTC (rev 49510)
+++ grass/trunk/raster/r.cost/main.c	2011-12-04 05:53:03 UTC (rev 49511)
@@ -168,13 +168,13 @@
     opt7 = G_define_standard_option(G_OPT_V_INPUT);
     opt7->key = "start_points";
     opt7->required = NO;
-    opt7->description = _("Name of starting vector points map");
+    opt7->label = _("Name of starting vector points map");
     opt7->guisection = _("Start");
 
     opt8 = G_define_standard_option(G_OPT_V_INPUT);
     opt8->key = "stop_points";
     opt8->required = NO;
-    opt8->description = _("Name of stop vector points map");
+    opt8->label = _("Name of stop vector points map");
     opt8->guisection = _("Stop");
 
     opt9 = G_define_standard_option(G_OPT_R_INPUT);



More information about the grass-commit mailing list