Skip to content

Commit

Permalink
const
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids authored and github-actions[bot] committed Apr 4, 2023
1 parent bc56cec commit b90a692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmanageconnectionsdialog.cpp
Expand Up @@ -277,7 +277,7 @@ bool QgsManageConnectionsDialog::populateConnections()
connections = QgsVectorTileProviderConnection::sTreeConnectionVectorTile->items();
break;
}
for ( const QString &connection : connections )
for ( const QString &connection : std::as_const( connections ) )
{
QListWidgetItem *item = new QListWidgetItem();
item->setText( connection );
Expand Down

0 comments on commit b90a692

Please sign in to comment.