[GRASS-SVN] r44461 - grass/trunk/lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Nov 28 11:24:52 EST 2010
Author: mmetz
Date: 2010-11-28 08:24:52 -0800 (Sun, 28 Nov 2010)
New Revision: 44461
Modified:
grass/trunk/lib/vector/Vlib/snap.c
Log:
change message to verbose message
Modified: grass/trunk/lib/vector/Vlib/snap.c
===================================================================
--- grass/trunk/lib/vector/Vlib/snap.c 2010-11-28 16:23:44 UTC (rev 44460)
+++ grass/trunk/lib/vector/Vlib/snap.c 2010-11-28 16:24:52 UTC (rev 44461)
@@ -147,7 +147,7 @@
point = 1; /* index starts from 1 ! */
nvertices = 0;
- G_message(_("Snap vertices (pass 1: select points)..."));
+ G_verbose_message(_("Snap vertices Pass 1: select points"));
for (line_idx = 0; line_idx < List_lines->n_values; line_idx++) {
int v;
@@ -190,7 +190,7 @@
* points within threshold.
* Update anchor for marked points if new anchor is closer. */
- G_message(_("Snap vertices (pass 2: assign anchor vertices)..."));
+ G_verbose_message(_("Snap vertices Pass 2: assign anchor vertices"));
nanchors = ntosnap = 0;
rbtree_init_trav(&RBTrav1, RBTree);
@@ -271,7 +271,7 @@
nsnapped = ncreated = 0;
- G_message(_("Snap vertices (pass 3: snap to assigned points)..."));
+ G_verbose_message(_("Snap vertices Pass 3: snap to assigned points"));
for (line_idx = 0; line_idx < List_lines->n_values; line_idx++) {
int v;
@@ -415,7 +415,6 @@
}
}
} /* for each line */
-
G_percent(line_idx, List_lines->n_values, 2); /* finish it */
Vect_destroy_line_struct(Points);
More information about the grass-commit
mailing list