[GRASS-SVN] r61275 - grass/trunk/vector/v.generalize
svn_grass at osgeo.org
svn_grass at osgeo.org
Fri Jul 18 02:18:29 PDT 2014
Author: huhabla
Date: 2014-07-18 02:18:29 -0700 (Fri, 18 Jul 2014)
New Revision: 61275
Modified:
grass/trunk/vector/v.generalize/main.c
Log:
Use G_warning() to warn about not generalized lines and boundaries
Modified: grass/trunk/vector/v.generalize/main.c
===================================================================
--- grass/trunk/vector/v.generalize/main.c 2014-07-18 08:55:42 UTC (rev 61274)
+++ grass/trunk/vector/v.generalize/main.c 2014-07-18 09:18:29 UTC (rev 61275)
@@ -552,10 +552,10 @@
total_output += after;
}
if (not_modified_boundaries > 0)
- G_message(_("%d boundaries were not modified because modification would damage topology"),
+ G_warning(_("%d boundaries were not modified because modification would damage topology"),
not_modified_boundaries);
if (n_oversimplified > 0)
- G_message(_("%d lines/boundaries were not modified due to over-simplification"),
+ G_warning(_("%d lines/boundaries were not modified due to over-simplification"),
n_oversimplified);
G_message("-----------------------------------------------------");
More information about the grass-commit
mailing list