Skip to content

v0.2.54..v0.2.55 changeset WayJoinerOp.h

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h b/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h
index 3ea98fc..8cb9166 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h
+++ b/hoot-core/src/main/cpp/hoot/core/ops/WayJoinerOp.h
@@ -32,6 +32,7 @@
 #include <hoot/core/ops/OsmMapOperation.h>
 #include <hoot/core/util/Configurable.h>
 #include <hoot/core/algorithms/WayJoiner.h>
+#include <hoot/core/util/StringUtils.h>
 
 namespace hoot
 {
@@ -58,10 +59,13 @@ public:
   { return "Rejoining ways split during conflation..."; }
 
   virtual QString getCompletedStatusMessage() const
-  { return "Rejoined " + QString::number(_numAffected) + " ways"; }
+  {
+    return
+      "Rejoined " + StringUtils::formatLargeNumber(_wayJoiner->getNumJoined()) + " pairs of ways";
+  }
 
   /**
-   * @see FilteredByCriteria
+   * @see FilteredByGeometryTypeCriteria
    */
   virtual QStringList getCriteria() const;
 
Clone this wiki locally