Quellcode durchsuchen

cosmetics in d.rast/vect module desc

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@39162 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa vor 15 Jahren
Ursprung
Commit
d9cbe20a0c
2 geänderte Dateien mit 6 neuen und 11 gelöschten Zeilen
  1. 2 4
      display/d.rast/main.c
  2. 4 7
      display/d.vect/main.c

+ 2 - 4
display/d.rast/main.c

@@ -52,10 +52,8 @@ int main(int argc, char **argv)
     module = G_define_module();
     G_add_keyword(_("display"));
     G_add_keyword(_("raster"));
-    module->description =
-	_("Displays and overlays raster map layers "
-	  "in the active display frame on the graphics monitor.");
-
+    module->description = _("Displays raster map layer in the active map display window.");
+    
     /* set up command line */
     map = G_define_standard_option(G_OPT_R_MAP);
     map->description = _("Raster map to be displayed");

+ 4 - 7
display/d.vect/main.c

@@ -3,9 +3,8 @@
  *
  * MODULE:       d.vect
  * AUTHOR(S):    CERL, Radim Blazek, others
- * PURPOSE:      Display the binary vector file that the user wants displayed 
- *               on top of the current image.
- * COPYRIGHT:    (C) 2004-2008 by the GRASS Development Team
+ * PURPOSE:      Display the vector map in map display
+ * COPYRIGHT:    (C) 2004-2009 by the GRASS Development Team
  *
  *               This program is free software under the GNU General Public
  *               License (>=v2). Read the file COPYING that comes with GRASS
@@ -118,10 +117,8 @@ int main(int argc, char **argv)
     module = G_define_module();
     G_add_keyword(_("display"));
     G_add_keyword(_("vector"));
-    module->description =
-	_("Displays vector data in the active "
-	  "frame on the graphics monitor.");
-
+    module->description = _("Displays vector map layer in the active map display window.");
+    
     map_opt = G_define_standard_option(G_OPT_V_MAP);
 
     display_opt = G_define_option();