[GRASS-SVN] r42971 - grass/branches/develbranch_6/lib/ogsf
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Aug 2 16:55:47 EDT 2010
Author: martinl
Date: 2010-08-02 20:55:47 +0000 (Mon, 02 Aug 2010)
New Revision: 42971
Modified:
grass/branches/develbranch_6/lib/ogsf/Gs3.c
Log:
ogsflib: message cosmetics (use fully qualified name)
(merge r42970 from trunk)
Modified: grass/branches/develbranch_6/lib/ogsf/Gs3.c
===================================================================
--- grass/branches/develbranch_6/lib/ogsf/Gs3.c 2010-08-02 20:54:38 UTC (rev 42970)
+++ grass/branches/develbranch_6/lib/ogsf/Gs3.c 2010-08-02 20:55:47 UTC (rev 42971)
@@ -706,7 +706,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++) {
G_lookup_colors(cur, r, g, b, set, cols, &colrules);
@@ -777,8 +778,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++) {
G_lookup_f_raster_colors(fcur, r, g, b, set, cols, &colrules);
G_percent(i, rows, 2);
More information about the grass-commit
mailing list