We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 9cb36b0 commit e10bd31Copy full SHA for e10bd31
src/providers/wfs/qgswfssourceselect.cpp
@@ -565,6 +565,11 @@ void QgsWFSSourceSelect::buildQuery( const QModelIndex &index )
565
QgsWfsConnection connection( cmbConnections->currentText() );
566
QgsWFSDataSourceURI uri( connection.uri().uri( false ) );
567
uri.setTypeName( typeName );
568
+ if ( gbCRS->isEnabled() )
569
+ {
570
+ QString crsString = labelCoordRefSys->text();
571
+ uri.setSRSName( crsString );
572
+ }
573
574
QModelIndex filterIndex = index.sibling( index.row(), MODEL_IDX_SQL );
575
QString sql( filterIndex.data().toString() );
0 commit comments