Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update src/providers/wcs/qgswcsprovider.cpp
Co-authored-by: Nyall Dawson <nyall.dawson@gmail.com>
  • Loading branch information
2 people authored and github-actions[bot] committed Apr 27, 2023
1 parent 72fd697 commit 1dfeb48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/wcs/qgswcsprovider.cpp
Expand Up @@ -438,7 +438,7 @@ bool QgsWcsProvider::parseUri( const QString &uriString )

mTime = uri.param( QStringLiteral( "time" ) );

QStringList bboxParts = uri.param( QStringLiteral( "bbox" ) ).split( "," );
const QStringList bboxParts = uri.param( QStringLiteral( "bbox" ) ).split( "," );
if ( bboxParts.length() == 4 )
{
mBBOX = QgsRectangle( bboxParts[0].toDouble(), bboxParts[1].toDouble(), bboxParts[2].toDouble(), bboxParts[3].toDouble() );
Expand Down

0 comments on commit 1dfeb48

Please sign in to comment.