[GRASS-SVN] r44220 - grass/branches/develbranch_6/lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 7 16:18:12 EST 2010


Author: martinl
Date: 2010-11-07 13:18:12 -0800 (Sun, 07 Nov 2010)
New Revision: 44220

Modified:
   grass/branches/develbranch_6/lib/vector/Vlib/build_nat.c
Log:
cosmetics in verbosity


Modified: grass/branches/develbranch_6/lib/vector/Vlib/build_nat.c
===================================================================
--- grass/branches/develbranch_6/lib/vector/Vlib/build_nat.c	2010-11-07 17:42:12 UTC (rev 44219)
+++ grass/branches/develbranch_6/lib/vector/Vlib/build_nat.c	2010-11-07 21:18:12 UTC (rev 44220)
@@ -576,7 +576,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);
 
@@ -609,7 +609,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);
@@ -624,7 +624,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