mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-01 00:46:20 -05:00
Improve range loop
This commit is contained in:
parent
35a06f953f
commit
b298e8d5b4
@ -286,7 +286,7 @@ QDomElement QgsMeshZValueDatasetGroup::writeXml( QDomDocument &doc, const QgsRea
|
||||
|
||||
QgsMeshZValueDataset::QgsMeshZValueDataset( const QgsMesh &mesh ): mMesh( mesh )
|
||||
{
|
||||
for ( const QgsMeshVertex vertex : mMesh.vertices )
|
||||
for ( const QgsMeshVertex &vertex : mesh.vertices )
|
||||
{
|
||||
if ( vertex.z() < mZMinimum )
|
||||
mZMinimum = vertex.z();
|
||||
|
Loading…
x
Reference in New Issue
Block a user