Replaced all Qt foreach loops with modern C++ range-based loops. (#277)
This commit is contained in:
@@ -298,7 +298,7 @@ namespace glabels
|
||||
{
|
||||
mCategoryIdList.clear();
|
||||
|
||||
foreach( QCheckBox* check, mCheckList )
|
||||
for ( QCheckBox* check : mCheckList )
|
||||
{
|
||||
if ( check->isChecked() )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user