Skip to content

Commit

Permalink
[qt6] fix compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored and nyalldawson committed Mar 31, 2021
1 parent 81c372d commit ee47157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsdatasourceuri.cpp
Expand Up @@ -565,7 +565,7 @@ QString QgsDataSourceUri::uri( bool expandAuthConfig ) const
uri += QLatin1String( " selectatid=false" );
}

for ( QMap<QString, QString>::const_iterator it = mParams.begin(); it != mParams.end(); ++it )
for ( auto it = mParams.constBegin(); it != mParams.constEnd(); ++it )
{
if ( it.key().contains( '=' ) || it.key().contains( ' ' ) )
{
Expand Down

0 comments on commit ee47157

Please sign in to comment.