[GRASS-SVN] r42970 - grass/trunk/lib/ogsf

svn_grass at osgeo.org svn_grass at osgeo.org
Mon Aug 2 16:54:38 EDT 2010


Author: martinl
Date: 2010-08-02 20:54:38 +0000 (Mon, 02 Aug 2010)
New Revision: 42970

Modified:
   grass/trunk/lib/ogsf/Gs3.c
Log:
ogsflib: message cosmetics (use fully qualified name)


Modified: grass/trunk/lib/ogsf/Gs3.c
===================================================================
--- grass/trunk/lib/ogsf/Gs3.c	2010-08-02 20:48:19 UTC (rev 42969)
+++ grass/trunk/lib/ogsf/Gs3.c	2010-08-02 20:54:38 UTC (rev 42970)
@@ -697,7 +697,8 @@
 
     cur = buff;
 
-    G_message(_("Translating colors from raster map <%s>..."), filename);
+    G_message(_("Translating colors from raster map <%s>..."),
+	      G_fully_qualified_name(filename, mapset));
 
     for (i = 0; i < rows; i++) {
 	Rast_lookup_c_colors(cur, r, g, b, set, cols, &colrules);
@@ -768,8 +769,9 @@
     fcur = fbuf;
     icur = ibuf;
 
-    G_message(_("Translating colors from raster map <%s>..."), filename);
-
+    G_message(_("Translating colors from raster map <%s>..."),
+	      G_fully_qualified_name(filename, mapset));
+    
     for (i = 0; i < rows; i++) {
 	Rast_lookup_f_colors(fcur, r, g, b, set, cols, &colrules);
 	G_percent(i, rows, 2);



More information about the grass-commit mailing list