mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
fix #3591
git-svn-id: http://svn.osgeo.org/qgis/trunk@15458 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
a41769fdc9
commit
8c4ab1cae5
@ -337,7 +337,7 @@ bool QgsWMSSourceSelect::populateLayerList( QgsWmsProvider *wmsProvider )
|
||||
{
|
||||
QgsNumericSortTreeWidgetItem *lItem = createItem( layer->orderId, QStringList() << layer->name << layer->title << layer->abstract, items, layerAndStyleCount, layerParents, layerParentNames );
|
||||
|
||||
lItem->setData( 0, Qt::UserRole, layer->name );
|
||||
lItem->setData( 0, Qt::UserRole + 0, layer->name );
|
||||
lItem->setData( 0, Qt::UserRole + 1, "" );
|
||||
lItem->setData( 0, Qt::UserRole + 2, layer->crs );
|
||||
|
||||
@ -674,6 +674,8 @@ void QgsWMSSourceSelect::on_btnChangeSpatialRefSys_clicked()
|
||||
enableLayersForCrs( lstLayers->topLevelItem( i ) );
|
||||
}
|
||||
|
||||
updateButtons();
|
||||
|
||||
// update the display of this widget
|
||||
update();
|
||||
}
|
||||
@ -758,7 +760,7 @@ void QgsWMSSourceSelect::applySelectionConstraints( QTreeWidgetItem *item )
|
||||
void QgsWMSSourceSelect::collectNamedLayers( QTreeWidgetItem *item, QStringList &layers, QStringList &styles )
|
||||
{
|
||||
QString layerName = item->data( 0, Qt::UserRole + 0 ).toString();
|
||||
QString styleName = item->data( 1, Qt::UserRole + 0 ).toString();
|
||||
QString styleName = item->data( 0, Qt::UserRole + 1 ).toString();
|
||||
if ( layerName.isEmpty() )
|
||||
{
|
||||
// layer group
|
||||
|
Loading…
x
Reference in New Issue
Block a user