diff --git a/src/gui/qgsmapcanvas.cpp b/src/gui/qgsmapcanvas.cpp index 33656db0c94..e5552dd2717 100644 --- a/src/gui/qgsmapcanvas.cpp +++ b/src/gui/qgsmapcanvas.cpp @@ -173,7 +173,7 @@ QgsMapRenderer* QgsMapCanvas::mapRenderer() } -QgsMapLayer* QgsMapCanvas::getZpos( int index ) +QgsMapLayer* QgsMapCanvas::layer( int index ) { QStringList& layers = mMapRenderer->layerSet(); if ( index >= 0 && index < ( int ) layers.size() ) @@ -253,7 +253,7 @@ void QgsMapCanvas::setLayerSet( QList& layers ) { // Add check if vector layer when disconnecting from selectionChanged slot // Ticket #811 - racicot - QgsMapLayer *currentLayer = getZpos( i ); + QgsMapLayer *currentLayer = layer( i ); disconnect( currentLayer, SIGNAL( repaintRequested() ), this, SLOT( refresh() ) ); disconnect( currentLayer, SIGNAL( screenUpdateRequested() ), this, SLOT( updateMap() ) ); QgsVectorLayer *isVectLyr = dynamic_cast < QgsVectorLayer * >( currentLayer ); @@ -269,7 +269,7 @@ void QgsMapCanvas::setLayerSet( QList& layers ) { // Add check if vector layer when connecting to selectionChanged slot // Ticket #811 - racicot - QgsMapLayer *currentLayer = getZpos( i ); + QgsMapLayer *currentLayer = layer( i ); connect( currentLayer, SIGNAL( repaintRequested() ), this, SLOT( refresh() ) ); connect( currentLayer, SIGNAL( screenUpdateRequested() ), this, SLOT( updateMap() ) ); QgsVectorLayer *isVectLyr = dynamic_cast < QgsVectorLayer * >( currentLayer ); diff --git a/src/gui/qgsmapcanvas.h b/src/gui/qgsmapcanvas.h index a7da9746a53..f8c4e9ce599 100644 --- a/src/gui/qgsmapcanvas.h +++ b/src/gui/qgsmapcanvas.h @@ -172,7 +172,7 @@ class GUI_EXPORT QgsMapCanvas : public QGraphicsView void updateFullExtent(); //! return the map layer at position index in the layer stack - QgsMapLayer *getZpos( int index ); + QgsMapLayer *layer( int index ); //! return number of layers on the map int layerCount() const;