mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-03 00:05:24 -04:00
Add missing const's
This commit is contained in:
parent
c4b1431e92
commit
93865e3315
@ -92,7 +92,7 @@ double QgsMapSettings::extentBuffer() const
|
||||
return mExtentBuffer;
|
||||
}
|
||||
|
||||
void QgsMapSettings::setExtentBuffer( double buffer )
|
||||
void QgsMapSettings::setExtentBuffer( const double buffer )
|
||||
{
|
||||
mExtentBuffer = buffer;
|
||||
}
|
||||
|
@ -649,12 +649,12 @@ bool QgsWmsRenderContext::isValidWidthHeight() const
|
||||
return true;
|
||||
}
|
||||
|
||||
double QgsWmsRenderContext::mapTileBuffer( int mapWidth ) const
|
||||
double QgsWmsRenderContext::mapTileBuffer( const int mapWidth ) const
|
||||
{
|
||||
double buffer;
|
||||
if ( mFlags & UseTileBuffer )
|
||||
{
|
||||
QgsRectangle extent = mParameters.bboxAsRectangle();
|
||||
const QgsRectangle extent = mParameters.bboxAsRectangle();
|
||||
if ( !mParameters.bbox().isEmpty() && extent.isEmpty() )
|
||||
{
|
||||
throw QgsBadRequestException( QgsServiceException::QGIS_InvalidParameterValue,
|
||||
|
Loading…
x
Reference in New Issue
Block a user