Skip to content

v0.2.47..v0.2.48 changeset RemoveMissingElementsVisitor.h

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/visitors/RemoveMissingElementsVisitor.h b/hoot-core/src/main/cpp/hoot/core/visitors/RemoveMissingElementsVisitor.h
index dec6971..6874f1c 100644
--- a/hoot-core/src/main/cpp/hoot/core/visitors/RemoveMissingElementsVisitor.h
+++ b/hoot-core/src/main/cpp/hoot/core/visitors/RemoveMissingElementsVisitor.h
@@ -44,7 +44,7 @@ public:
 
   static std::string className() { return "hoot::RemoveMissingElementsVisitor"; }
 
-  RemoveMissingElementsVisitor();
+  RemoveMissingElementsVisitor(int maxReport = Log::getWarnMessageLimit());
 
   virtual void setOsmMap(OsmMap* map) { _v->setOsmMap(map);}
 
@@ -57,7 +57,7 @@ public:
   { return "Removing references to elements that do not exist..."; }
 
   virtual QString getCompletedStatusMessage() const
-  { return "Removed " + QString::number(_numAffected) + " missing elements"; }
+  { return "Removed " + QString::number(_numAffected) + " missing element child references"; }
 
   virtual QString getDescription() const
   { return "Removes references to any elements that do not exist"; }
Clone this wiki locally