Преглед на файлове

v.to.rast: progress message should be printed on verbosity level 1

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@54376 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa преди 12 години
родител
ревизия
a457deebe2
променени са 3 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 1 1
      vector/v.to.rast/do_areas.c
  2. 1 1
      vector/v.to.rast/do_lines.c
  3. 1 1
      vector/v.to.rast/vect2rast.c

+ 1 - 1
vector/v.to.rast/do_areas.c

@@ -31,7 +31,7 @@ int do_areas(struct Map_info *Map, struct line_pnts *Points,
     if (nareas <= 0)
 	return 0;
 
-    G_message(_("Reading areas..."));
+    G_important_message(_("Reading areas..."));
     for (i = 0; i < nareas; i++) {
 	/* Note: in old version (grass5.0) there was a check here if the current area 
 	 *        is identical to previous one. I don't see any reason for this in topological vectors */

+ 1 - 1
vector/v.to.rast/do_lines.c

@@ -33,7 +33,7 @@ int do_lines(struct Map_info *Map, struct line_pnts *Points,
     count = 0;
     *count_all = 0;
 
-    G_message(_("Reading features..."));
+    G_important_message(_("Reading features..."));
     for (index = 1; index <= nlines; index++) {
 	G_percent(index, nlines, 2);
 	type = Vect_read_line(Map, Points, Cats, index);

+ 1 - 1
vector/v.to.rast/vect2rast.c

@@ -178,7 +178,7 @@ int vect_to_rast(const char *vector_map, const char *raster_map, const char *fie
 	    }
 	}
 
-	G_message(_("Writing raster map..."));
+	G_important_message(_("Writing raster map..."));
 
 	stat = output_raster(fd);
     } while (stat == 0);