Skip to content

Commit 4b74b74

Browse files
mhugentelpaso
andauthoredApr 21, 2023
Update src/server/services/wms/qgswmsparameters.cpp
Co-authored-by: Alessandro Pasotti <elpaso@itopen.it>
1 parent a4d806b commit 4b74b74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/server/services/wms/qgswmsparameters.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2349,7 +2349,7 @@ namespace QgsWms
23492349
if ( options.contains( PdfFormatOption::PREDEFINED_MAP_SCALES ) )
23502350
{
23512351
QStringList scaleList = options[PdfFormatOption::PREDEFINED_MAP_SCALES].split( ',' );
2352-
for ( const auto &it : scaleList )
2352+
for ( const QString &it : std::as_const( scaleList ) )
23532353
{
23542354
bool ok = false;
23552355
qreal scale = it.toDouble( &ok );

0 commit comments

Comments
 (0)
Please sign in to comment.