Kaynağa Gözat

Use G_warning() to warn about not generalized lines and boundaries

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@61275 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert 11 yıl önce
ebeveyn
işleme
e9791a48b4
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      vector/v.generalize/main.c

+ 2 - 2
vector/v.generalize/main.c

@@ -552,10 +552,10 @@ int main(int argc, char *argv[])
 	    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("-----------------------------------------------------");