Quellcode durchsuchen

vlib: don't use verbose messages for G_percent()

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@47026 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa vor 14 Jahren
Ursprung
Commit
46376bcb2e
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. 2 2
      lib/vector/Vlib/break_polygons.c

+ 2 - 2
lib/vector/Vlib/break_polygons.c

@@ -430,7 +430,7 @@ Vect_break_polygons_mem(struct Map_info *Map, int type, struct Map_info *Err)
     nallpoints = 0;
     XPnt_search.used = 0;
 
-    G_verbose_message(_("Break polygons Pass 1: select break points"));
+    G_message(_("Breaking polygons (pass 1: select break points)..."));
 
     for (i = 1; i <= nlines; i++) {
 	G_percent(i, nlines, 1);
@@ -547,7 +547,7 @@ Vect_break_polygons_mem(struct Map_info *Map, int type, struct Map_info *Err)
     /* Second loop through lines (existing when loop is started, no need to process lines written again)
      * and break at points marked for break */
 
-    G_verbose_message(_("Break polygons Pass 2: break at selected points"));
+    G_message(_("Breaking polygons (pass 2: break at selected points)..."));
 
     for (i = 1; i <= nlines; i++) {
 	int n_orig_points;