From 8208e5858a61389f0e1a65a318161095bc44ce7b Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Tue, 25 Feb 2014 00:44:20 +0100 Subject: [PATCH] refs #146 , using ", " in convertToQString -> better readability and word wrap --- src/blackmisc/containerbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackmisc/containerbase.h b/src/blackmisc/containerbase.h index 77f643d02..582602c0b 100644 --- a/src/blackmisc/containerbase.h +++ b/src/blackmisc/containerbase.h @@ -163,7 +163,7 @@ namespace BlackMisc { QString str; // qualifying stringify with this-> to workaround bug in GCC 4.7.2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56402 - std::for_each(derived().cbegin(), derived().cend(), [ & ](const T & value) { str += (str.isEmpty() ? "{" : ",") + this->stringify(value, i18n); }); + std::for_each(derived().cbegin(), derived().cend(), [ & ](const T & value) { str += (str.isEmpty() ? "{" : ", ") + this->stringify(value, i18n); }); if (str.isEmpty()) { str = "{"; } return str += "}"; }