refs #800 Fixed making unnecessary copies.

This commit is contained in:
Mathew Sutcliffe
2016-11-10 00:42:57 +00:00
committed by Klaus Basan
parent 6f972035ab
commit 429c6946c6
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ namespace BlackMisc
for (const Obj &obj : container)
{
QString rowHtml;
for (const CPropertyIndex index : indexes)
for (const CPropertyIndex &index : indexes)
{
rowHtml += "<td>" + obj.propertyByIndex(index).toQString(true) + "</td>";
}