Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 98a8290

Browse files
authoredApr 4, 2023
const
1 parent 0fd3613 commit 98a8290

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgsmanageconnectionsdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ bool QgsManageConnectionsDialog::populateConnections()
277277
connections = QgsVectorTileProviderConnection::sTreeConnectionVectorTile->items();
278278
break;
279279
}
280-
for ( const QString &connection : connections )
280+
for ( const QString &connection : std::as_const( connections ) )
281281
{
282282
QListWidgetItem *item = new QListWidgetItem();
283283
item->setText( connection );

0 commit comments

Comments
 (0)
Please sign in to comment.