Skip to content

Commit

Permalink
Applied patch #1325 from smizuno to fix multipoint issues. Thanks!
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9753 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Dec 8, 2008
1 parent 6aa1c6c commit 9410506
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/qgsgeometry.cpp
Expand Up @@ -1525,6 +1525,7 @@ bool QgsGeometry::deleteVertex( int atVertex )
case QGis::WKBMultiPoint:
{
//todo
break;
}
case QGis::WKBLineString25D:
hasZValue = true;
Expand Down Expand Up @@ -3321,6 +3322,7 @@ QgsRectangle QgsGeometry::boundingBox()
{
ptr = mGeometry + 1 + sizeof( int );
nPoints = ( int * ) ptr;
ptr += sizeof( int );
for ( idx = 0; idx < *nPoints; idx++ )
{
ptr += ( 1 + sizeof( int ) );
Expand Down

0 comments on commit 9410506

Please sign in to comment.