Skip to content

Commit 2201fc6

Browse files
authoredMar 17, 2023
fix WMS connection cannot be removed (#52282)
fixes #52275
1 parent f6d4ad3 commit 2201fc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsowsconnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,5 +300,5 @@ void QgsOwsConnection::addCommonConnectionSettings( QgsDataSourceUri &uri, const
300300

301301
void QgsOwsConnection::deleteConnection( const QString &service, const QString &name )
302302
{
303-
sTreeOwsConnections->deleteItem( service.toLower(), {name} );
303+
sTreeOwsConnections->deleteItem( name, {service.toLower()} );
304304
}

0 commit comments

Comments
 (0)
Please sign in to comment.