Replaced all Qt foreach loops with modern C++ range-based loops. (#277)
This commit is contained in:
+1
-1
@@ -112,7 +112,7 @@ int main( int argc, char **argv )
|
||||
// Open each file in its own main window
|
||||
//
|
||||
bool openedFiles = false;
|
||||
foreach ( QString filename, parser.positionalArguments() )
|
||||
for ( QString filename : parser.positionalArguments() )
|
||||
{
|
||||
glabels::model::Model *model = glabels::model::XmlLabelParser::readFile( filename );
|
||||
if ( model )
|
||||
|
||||
Reference in New Issue
Block a user