Navigation Menu

Skip to content

Commit

Permalink
Fix QgsGeometryImport::geomFromWkt logic
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 27, 2015
1 parent ec01d76 commit f234810
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/geometry/qgsgeometryimport.cpp
Expand Up @@ -101,7 +101,7 @@ QgsAbstractGeometryV2* QgsGeometryImport::geomFromWkt( const QString& text )
{
geom = new QgsCircularStringV2();
}
else if ( text.startsWith( "CompoundCurve" ), Qt::CaseInsensitive )
else if ( text.startsWith( "CompoundCurve" , Qt::CaseInsensitive ) )
{
geom = new QgsCompoundCurveV2();
}
Expand Down

0 comments on commit f234810

Please sign in to comment.