Browse Source

ogsflib: message cosmetics (use fully qualified name)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@42970 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 15 years ago
parent
commit
c6de8980f0
1 changed files with 5 additions and 3 deletions
  1. 5 3
      lib/ogsf/Gs3.c

+ 5 - 3
lib/ogsf/Gs3.c

@@ -697,7 +697,8 @@ void Gs_pack_colors(const char *filename, int *buff, int rows, int cols)
 
     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 @@ void Gs_pack_colors_float(const char *filename, float *fbuf, int *ibuf,
     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);