mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
fixed backslash validator in OWS connection names
This commit is contained in:
parent
54d3510e75
commit
277d2747a7
@ -40,7 +40,7 @@ QgsNewHttpConnection::QgsNewHttpConnection(
|
||||
// using connection-wms and connection-wfs -> parse credential key fro it.
|
||||
mCredentialsBaseKey = mBaseKey.split( '-' ).last().toUpper();
|
||||
|
||||
txtName->setValidator( new QRegExpValidator( QRegExp( "[^/]+" ), txtName ) );
|
||||
txtName->setValidator( new QRegExpValidator( QRegExp( "[^\\/]+" ), txtName ) );
|
||||
|
||||
cmbDpiMode->clear();
|
||||
cmbDpiMode->addItem( tr( "all" ) );
|
||||
|
Loading…
x
Reference in New Issue
Block a user