Skip to content
Permalink
Browse files
Doxymentation fix
  • 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.
@@ -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
@@ -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
@@ -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
@@ -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

0 comments on commit 71fc457

Please sign in to comment.