give better names to some methods

git-svn-id: http://svn.osgeo.org/qgis/trunk@9440 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
timlinux 2008-10-06 17:52:25 +00:00
parent 1599ecb553
commit ade1226b07
2 changed files with 4 additions and 4 deletions

View File

@ -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<QgsMapCanvasLayer>& 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<QgsMapCanvasLayer>& 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 );

View File

@ -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;