[GRASS-SVN] r44222 - grass/branches/releasebranch_6_4/lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 7 16:23:43 EST 2010


Author: martinl
Date: 2010-11-07 13:23:43 -0800 (Sun, 07 Nov 2010)
New Revision: 44222

Modified:
   grass/branches/releasebranch_6_4/lib/vector/Vlib/build_nat.c
Log:
cosmetics in verbosity
(merge r44220 from devbr6)


Modified: grass/branches/releasebranch_6_4/lib/vector/Vlib/build_nat.c
===================================================================
--- grass/branches/releasebranch_6_4/lib/vector/Vlib/build_nat.c	2010-11-07 21:20:38 UTC (rev 44221)
+++ grass/branches/releasebranch_6_4/lib/vector/Vlib/build_nat.c	2010-11-07 21:23:43 UTC (rev 44222)
@@ -578,7 +578,7 @@
     if (plus->built < GV_BUILD_AREAS) {
 	/* Build areas */
 	/* Go through all bundaries and try to build area for both sides */
-	G_message(_("Building areas..."));
+	G_important_message(_("Building areas..."));
 	for (i = 1; i <= plus->n_lines; i++) {
 	    G_percent(i, plus->n_lines, 1);
 
@@ -611,7 +611,7 @@
 
     /* Attach isles to areas */
     if (plus->built < GV_BUILD_ATTACH_ISLES) {
-	G_message(_("Attaching islands..."));
+	G_important_message(_("Attaching islands..."));
 	for (i = 1; i <= plus->n_isles; i++) {
 	    G_percent(i, plus->n_isles, 1);
 	    Vect_attach_isle(Map, i);
@@ -626,7 +626,7 @@
     if (plus->built < GV_BUILD_CENTROIDS) {
 	int nlines;
 
-	G_message(_("Attaching centroids..."));
+	G_important_message(_("Attaching centroids..."));
 
 	nlines = Vect_get_num_lines(Map);
 	for (line = 1; line <= nlines; line++) {



More information about the grass-commit mailing list