Skip to content

v0.2.47..v0.2.48 changeset RemoveEmptyRelationsOp.h

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core/src/main/cpp/hoot/core/ops/RemoveEmptyRelationsOp.h b/hoot-core/src/main/cpp/hoot/core/ops/RemoveEmptyRelationsOp.h
index 6d40a6a..667f239 100644
--- a/hoot-core/src/main/cpp/hoot/core/ops/RemoveEmptyRelationsOp.h
+++ b/hoot-core/src/main/cpp/hoot/core/ops/RemoveEmptyRelationsOp.h
@@ -31,6 +31,7 @@
 #include <hoot/core/elements/OsmMap.h>
 #include <hoot/core/ops/OsmMapOperation.h>
 #include <hoot/core/info/OperationStatusInfo.h>
+#include <hoot/core/util/StringUtils.h>
 
 namespace hoot
 {
@@ -57,7 +58,7 @@ public:
   { return "Removing empty relations..."; }
 
   virtual QString getCompletedStatusMessage() const override
-  { return "Removed " + QString::number(_numAffected) + " empty relations"; }
+  { return "Removed " + StringUtils::formatLargeNumber(_numAffected) + " empty relations"; }
 
   virtual QString getDescription() const override
   { return "Removes relations with no members"; }
Clone this wiki locally