mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
Fix cppcheck errors
This commit is contained in:
parent
7c65196b9f
commit
59a76430dc
@ -50,7 +50,7 @@ Returns the minimum value for the raster shader.
|
||||
int *returnRedValue /Out/,
|
||||
int *returnGreenValue /Out/,
|
||||
int *returnBlueValue /Out/,
|
||||
int *returnAlpha /Out/ );
|
||||
int *returnAlpha /Out/ ) const;
|
||||
%Docstring
|
||||
Generates a new RGBA value based on one input ``value``.
|
||||
|
||||
|
@ -50,7 +50,7 @@ Returns the minimum value for the raster shader.
|
||||
int *returnRedValue /Out/,
|
||||
int *returnGreenValue /Out/,
|
||||
int *returnBlueValue /Out/,
|
||||
int *returnAlpha /Out/ );
|
||||
int *returnAlpha /Out/ ) const;
|
||||
%Docstring
|
||||
Generates a new RGBA value based on one input ``value``.
|
||||
|
||||
|
@ -241,7 +241,7 @@ qint64 QgsCopcPointCloudIndex::pointCount() const
|
||||
return mLazInfo->pointCount();
|
||||
}
|
||||
|
||||
bool QgsCopcPointCloudIndex::loadHierarchy()
|
||||
bool QgsCopcPointCloudIndex::loadHierarchy() const
|
||||
{
|
||||
fetchHierarchyPage( mCopcInfoVlr.root_hier_offset, mCopcInfoVlr.root_hier_size );
|
||||
return true;
|
||||
|
@ -93,7 +93,7 @@ class CORE_EXPORT QgsCopcPointCloudIndex: public QgsPointCloudIndex
|
||||
|
||||
protected:
|
||||
bool loadSchema( QgsLazInfo &lazInfo );
|
||||
bool loadHierarchy();
|
||||
bool loadHierarchy() const;
|
||||
|
||||
//! Fetches all nodes leading to node \a node into memory
|
||||
bool fetchNodeHierarchy( const QgsPointCloudNodeId &n ) const;
|
||||
|
@ -286,7 +286,7 @@ QgsPointCloudBlock *QgsPointCloudIndex::getNodeDataFromCache( const QgsPointClou
|
||||
return cached ? cached->clone() : nullptr;
|
||||
}
|
||||
|
||||
void QgsPointCloudIndex::storeNodeDataToCache( QgsPointCloudBlock *data, const QgsPointCloudNodeId &node, const QgsPointCloudRequest &request )
|
||||
void QgsPointCloudIndex::storeNodeDataToCache( QgsPointCloudBlock *data, const QgsPointCloudNodeId &node, const QgsPointCloudRequest &request ) const
|
||||
{
|
||||
storeNodeDataToCacheStatic( data, node, request, mFilterExpression, mUri );
|
||||
}
|
||||
|
@ -342,7 +342,7 @@ class CORE_EXPORT QgsPointCloudIndex
|
||||
/**
|
||||
* Stores existing \a data to the cache for the specified \a node and \a request. Ownership is not transferred, block gets cloned in the cache.
|
||||
*/
|
||||
void storeNodeDataToCache( QgsPointCloudBlock *data, const QgsPointCloudNodeId &node, const QgsPointCloudRequest &request );
|
||||
void storeNodeDataToCache( QgsPointCloudBlock *data, const QgsPointCloudNodeId &node, const QgsPointCloudRequest &request ) const;
|
||||
|
||||
/**
|
||||
* Stores existing \a data to the cache for the specified \a node, \a request, \a expression and \a uri. Ownership is not transferred, block gets cloned in the cache.
|
||||
|
@ -33,7 +33,7 @@ QgsRasterShader::QgsRasterShader( double minimumValue, double maximumValue )
|
||||
QgsDebugMsgLevel( QStringLiteral( "called." ), 4 );
|
||||
}
|
||||
|
||||
bool QgsRasterShader::shade( double value, int *returnRedValue, int *returnGreenValue, int *returnBlueValue, int *returnAlpha )
|
||||
bool QgsRasterShader::shade( double value, int *returnRedValue, int *returnGreenValue, int *returnBlueValue, int *returnAlpha ) const
|
||||
{
|
||||
if ( mRasterShaderFunction )
|
||||
{
|
||||
|
@ -84,7 +84,7 @@ class CORE_EXPORT QgsRasterShader
|
||||
int *returnRedValue SIP_OUT,
|
||||
int *returnGreenValue SIP_OUT,
|
||||
int *returnBlueValue SIP_OUT,
|
||||
int *returnAlpha SIP_OUT );
|
||||
int *returnAlpha SIP_OUT ) const;
|
||||
|
||||
/**
|
||||
* Generates a new RGBA value based on an original RGBA value.
|
||||
|
Loading…
x
Reference in New Issue
Block a user