Skip to content

Commit

Permalink
sip and doxygen fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wonder-sk committed Jan 11, 2020
1 parent 64769f4 commit db50965
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
Expand Up @@ -53,7 +53,7 @@ Reads content of the object from XML
};


class QgsAbstractVectorLayer3DRenderer : QgsAbstract3DRenderer
class QgsAbstractVectorLayer3DRenderer : QgsAbstract3DRenderer /Abstract/
{
%Docstring
Base class for 3D renderers that are based on vector layers.
Expand Down
2 changes: 1 addition & 1 deletion src/3d/qgsabstractvectorlayer3drenderer.h
Expand Up @@ -68,7 +68,7 @@ class _3D_EXPORT QgsVectorLayer3DTilingSettings
*
* \since QGIS 3.12
*/
class _3D_EXPORT QgsAbstractVectorLayer3DRenderer : public QgsAbstract3DRenderer
class _3D_EXPORT QgsAbstractVectorLayer3DRenderer : public QgsAbstract3DRenderer SIP_ABSTRACT
{
public:
QgsAbstractVectorLayer3DRenderer();
Expand Down
5 changes: 5 additions & 0 deletions src/3d/qgsrulebasedchunkloader_p.cpp
Expand Up @@ -27,6 +27,8 @@

#include <QtConcurrent>

///@cond PRIVATE


QgsRuleBasedChunkLoader::QgsRuleBasedChunkLoader( const QgsRuleBasedChunkLoaderFactory *factory, QgsChunkNode *node )
: QgsChunkLoader( node )
Expand Down Expand Up @@ -154,10 +156,13 @@ QgsRuleBasedChunkedEntity::QgsRuleBasedChunkedEntity( QgsVectorLayer *vl, const
tilingSettings.zoomLevelsCount() - 1,
new QgsRuleBasedChunkLoaderFactory( map, vl, rootRule, tilingSettings.zoomLevelsCount() - 1 ) )
{
setShowBoundingBoxes( true );
}

QgsRuleBasedChunkedEntity::~QgsRuleBasedChunkedEntity()
{
// cancel / wait for jobs
cancelActiveJobs();
}

/// @endcond
4 changes: 4 additions & 0 deletions src/3d/qgsvectorlayerchunkloader_p.cpp
Expand Up @@ -34,6 +34,8 @@

#include <QtConcurrent>

///@cond PRIVATE


QgsVectorLayerChunkLoader::QgsVectorLayerChunkLoader( const QgsVectorLayerChunkLoaderFactory *factory, QgsChunkNode *node )
: QgsChunkLoader( node )
Expand Down Expand Up @@ -165,3 +167,5 @@ QgsVectorLayerChunkedEntity::~QgsVectorLayerChunkedEntity()
// cancel / wait for jobs
cancelActiveJobs();
}

/// @endcond

0 comments on commit db50965

Please sign in to comment.