Skip to content

Commit

Permalink
Doxymentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Dec 1, 2015
1 parent e76949b commit 71fc457
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions python/core/qgsmaplayerregistry.sip
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class QgsMapLayerRegistry : QObject
*
* @note As a side-effect QgsProject is made dirty.
*/
void removeMapLayers( const QList<QgsMapLayer*>& theLayerIds );
void removeMapLayers( const QList<QgsMapLayer*>& layers );

/**
* @brief
Expand Down Expand Up @@ -173,9 +173,9 @@ class QgsMapLayerRegistry : QObject
/**
* Emitted when one or more layers are removed from the registry
*
* @param theLayerIds A list layers which are removed.
* @param layers A list of layers which are removed.
*/
void layersWillBeRemoved( const QList<QgsMapLayer*>& layer );
void layersWillBeRemoved( const QList<QgsMapLayer*>& layers );

/**
* Emitted when an owned layer is removed from the registry
Expand Down
6 changes: 3 additions & 3 deletions src/core/qgsmaplayerregistry.h
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class CORE_EXPORT QgsMapLayerRegistry : public QObject
*
* @note As a side-effect QgsProject is made dirty.
*/
void removeMapLayers( const QList<QgsMapLayer*>& theLayerIds );
void removeMapLayers( const QList<QgsMapLayer*>& layers );

/**
* @brief
Expand Down Expand Up @@ -198,9 +198,9 @@ class CORE_EXPORT QgsMapLayerRegistry : public QObject
/**
* Emitted when one or more layers are removed from the registry
*
* @param theLayerIds A list layers which are removed.
* @param layers A list of layers which are removed.
*/
void layersWillBeRemoved( const QList<QgsMapLayer*>& layer );
void layersWillBeRemoved( const QList<QgsMapLayer*>& layers );

/**
* Emitted when an owned layer is removed from the registry
Expand Down

0 comments on commit 71fc457

Please sign in to comment.