We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent cb08848 commit d367081Copy full SHA for d367081
src/core/qgsgeometry.cpp
@@ -1525,6 +1525,7 @@ bool QgsGeometry::deleteVertex( int atVertex )
1525
case QGis::WKBMultiPoint:
1526
{
1527
//todo
1528
+ break;
1529
}
1530
case QGis::WKBLineString25D:
1531
hasZValue = true;
@@ -3321,6 +3322,7 @@ QgsRectangle QgsGeometry::boundingBox()
3321
3322
3323
ptr = mGeometry + 1 + sizeof( int );
3324
nPoints = ( int * ) ptr;
3325
+ ptr += sizeof( int );
3326
for ( idx = 0; idx < *nPoints; idx++ )
3327
3328
ptr += ( 1 + sizeof( int ) );
0 commit comments