Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
szekerest authored and nyalldawson committed Jun 15, 2019
1 parent 7d1b0cb commit 3196b02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/providers/mssql/qgsmssqlprovider.cpp
Expand Up @@ -1682,13 +1682,13 @@ void QgsMssqlProvider::mssqlWkbTypeAndDimension( QgsWkbTypes::Type wkbType, QStr
else if ( flatType == QgsWkbTypes::MultiPolygon )
geometryType = QStringLiteral( "MULTIPOLYGON" );
else if ( flatType == QgsWkbTypes::GeometryCollection )
geometryType = QStringLiteral( "GEOMETRYCOLLECTION" );
geometryType = QStringLiteral( "GEOMETRYCOLLECTION" );
else if ( flatType == QgsWkbTypes::CircularString )
geometryType = QStringLiteral( "CIRCULARSTRING" );
geometryType = QStringLiteral( "CIRCULARSTRING" );
else if ( flatType == QgsWkbTypes::CompoundCurve )
geometryType = QStringLiteral( "COMPOUNDCURVE" );
geometryType = QStringLiteral( "COMPOUNDCURVE" );
else if ( flatType == QgsWkbTypes::CurvePolygon )
geometryType = QStringLiteral( "CURVEPOLYGON" );
geometryType = QStringLiteral( "CURVEPOLYGON" );
else if ( flatType == QgsWkbTypes::Unknown )
geometryType = QStringLiteral( "GEOMETRY" );
else
Expand Down

0 comments on commit 3196b02

Please sign in to comment.