[GRASS-SVN] r61303 - in grass/branches/releasebranch_7_0: . vector/v.generalize
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Jul 21 14:07:39 PDT 2014
Author: neteler
Date: 2014-07-21 14:07:38 -0700 (Mon, 21 Jul 2014)
New Revision: 61303
Modified:
grass/branches/releasebranch_7_0/
grass/branches/releasebranch_7_0/vector/v.generalize/main.c
Log:
v.generalize: Use G_warning() to warn about not generalized lines and boundaries (trunk, r61275)
Property changes on: grass/branches/releasebranch_7_0
___________________________________________________________________
Modified: svn:mergeinfo
- /grass/trunk:61288,61290,61292,61294,61301
+ /grass/trunk:61275,61288,61290,61292,61294,61301
Modified: grass/branches/releasebranch_7_0/vector/v.generalize/main.c
===================================================================
--- grass/branches/releasebranch_7_0/vector/v.generalize/main.c 2014-07-21 19:34:51 UTC (rev 61302)
+++ grass/branches/releasebranch_7_0/vector/v.generalize/main.c 2014-07-21 21:07:38 UTC (rev 61303)
@@ -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