Skip to content

Commit d754ecf

Browse files
committedOct 31, 2018
Skip kw check
1 parent b6f2bae commit d754ecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/wms/qgswmsprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ void QgsWmsProvider::setQueryItem( QUrl &url, const QString &item, const QString
483483
{
484484
url.removeQueryItem( item );
485485
if ( value.isNull() )
486-
url.addQueryItem( item, QStringLiteral( "" ) );
486+
url.addQueryItem( item, QStringLiteral( "" ) ); // skip-keyword-check
487487
else
488488
url.addQueryItem( item, value );
489489
}

0 commit comments

Comments
 (0)
Please sign in to comment.