Skip to content

Commit

Permalink
Suffix spell fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrocha committed Jul 8, 2024
1 parent 9300807 commit 7026430
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/geometry/qgsabstractgeometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,12 @@ QString QgsAbstractGeometry::wktTypeStr() const
QString wkt = geometryType();
QString suffix;
if ( is3D() )
sufixe += 'Z';
suffix += 'Z';
if ( isMeasure() )
sufixe += 'M';
if ( !sufixe.isEmpty() )
suffix += 'M';
if ( !suffix.isEmpty() )
{
wkt += ' ' + sufixe;
wkt += ' ' + suffix;
}
return wkt;
}
Expand Down

0 comments on commit 7026430

Please sign in to comment.