mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
[qt6] fix compiling
This commit is contained in:
parent
81c372d0a5
commit
ee4715759a
@ -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( ' ' ) )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user