Replaced all Qt foreach loops with modern C++ range-based loops. (#277)
This commit is contained in:
@@ -138,7 +138,7 @@ namespace glabels
|
||||
similarProductsNullBox->hide();
|
||||
|
||||
QString similarListString;
|
||||
foreach ( QString name, list )
|
||||
for ( QString name : list )
|
||||
{
|
||||
similarListString += name + "\n";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user