Replaced all Qt foreach loops with modern C++ range-based loops. (#277)
This commit is contained in:
+1
-1
@@ -75,7 +75,7 @@ namespace glabels
|
||||
{
|
||||
QString text;
|
||||
|
||||
foreach ( const Token& token, mTokens )
|
||||
for ( const Token& token : mTokens )
|
||||
{
|
||||
if ( token.isField )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user