Skip to content

Commit 5b8a341

Browse files
committed
fix Doxygen warnings
1 parent d124011 commit 5b8a341

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

python/core/mesh/qgsmeshlayer.sip.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ yet support editing transactions.
2828

2929
The main data providers supported by QGIS are listed below.
3030

31-
\section providers Mesh data providers
31+
\section mesh_providers Mesh data providers
3232

33-
\subsection memory Memory data providerType (mesh_memory)
33+
\subsection mesh_memory Memory data providerType (mesh_memory)
3434

3535
The memory data provider is used to construct in memory data, for example scratch
3636
data. There is no inherent persistent storage of the data. The data source uri is constructed.

src/core/mesh/qgsmeshlayer.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ struct QgsMesh;
4646
*
4747
* The main data providers supported by QGIS are listed below.
4848
*
49-
* \section providers Mesh data providers
49+
* \section mesh_providers Mesh data providers
5050
*
51-
* \subsection memory Memory data providerType (mesh_memory)
51+
* \subsection mesh_memory Memory data providerType (mesh_memory)
5252
*
5353
* The memory data provider is used to construct in memory data, for example scratch
5454
* data. There is no inherent persistent storage of the data. The data source uri is constructed.

src/core/mesh/qgsmeshmemorydataprovider.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
* (at your option) any later version. *
1515
* *
1616
***************************************************************************/
17+
///@cond PRIVATE
18+
1719
#include "qgsmeshmemorydataprovider.h"
1820

1921
static const QString TEXT_PROVIDER_KEY = QStringLiteral( "mesh_memory" );
@@ -164,4 +166,4 @@ QgsMeshFace QgsMeshMemoryDataProvider::face( int index ) const
164166
return mFaces[index];
165167
}
166168

167-
169+
///@endcond

src/core/mesh/qgstriangularmesh.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class CORE_EXPORT QgsTriangularMesh
5454

5555
/**
5656
* Construct triangular mesh from layer's native mesh and context
57-
* \param layer QgsMeshLayer to get native mesh data
57+
* \param nativeMesh QgsMesh to access native vertices and faces
5858
* \param context Rendering context to estimate number of triagles to create for an face
5959
*/
6060
void update( QgsMesh *nativeMesh, QgsRenderContext *context );

0 commit comments

Comments
 (0)