Skip to content

Commit

Permalink
Merge pull request #1014 from 3nids/issue9138
Browse files Browse the repository at this point in the history
fix #9138
  • Loading branch information
mhugent committed Dec 5, 2013
2 parents f428c86 + 57d124b commit 63c62ad
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/core/qgsgeometry.cpp
Expand Up @@ -5221,6 +5221,12 @@ bool QgsGeometry::exportGeosToWkb() const

bool QgsGeometry::convertToMultiType()
{
// TODO: implement with GEOS
if ( mDirtyWkb )
{
exportGeosToWkb();
}

if ( !mGeometry )
{
return false;
Expand Down

0 comments on commit 63c62ad

Please sign in to comment.