Skip to content

Commit

Permalink
indentation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Dec 15, 2016
1 parent c956fe9 commit e1b30c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/dwg/qgsdwgimporter.cpp
Expand Up @@ -184,7 +184,7 @@ bool QgsDwgImporter::import( const QString &drawing, QString &error, bool doExpa
QgsDebugCall;

OGRwkbGeometryType lineGeomType, hatchGeomType;
if( useCurves )
if ( useCurves )
{
#if !defined(GDAL_COMPUTE_VERSION) || GDAL_VERSION_NUM < GDAL_COMPUTE_VERSION(2,0,0)
error = QObject::tr( "Curves only supported with GDAL2" );
Expand Down Expand Up @@ -1178,7 +1178,7 @@ bool QgsDwgImporter::createFeature( OGRLayerH layer, OGRFeatureH f, const QgsAbs
const QgsAbstractGeometry *g;
QScopedPointer<QgsAbstractGeometry> sg( nullptr );

if( !mUseCurves && g0.hasCurvedSegments() )
if ( !mUseCurves && g0.hasCurvedSegments() )
{
sg.reset( g0.segmentize() );
g = sg.data();
Expand All @@ -1190,7 +1190,7 @@ bool QgsDwgImporter::createFeature( OGRLayerH layer, OGRFeatureH f, const QgsAbs

QByteArray wkb = g->asWkb();
OGRGeometryH geom;
if ( OGR_G_CreateFromWkb( (unsigned char *) wkb.constData(), nullptr, &geom, wkb.size() ) != OGRERR_NONE )
if ( OGR_G_CreateFromWkb(( unsigned char * ) wkb.constData(), nullptr, &geom, wkb.size() ) != OGRERR_NONE )
{
LOG( QObject::tr( "Could not create geometry [%1]" ).arg( QString::fromUtf8( CPLGetLastErrorMsg() ) ) );
}
Expand Down

0 comments on commit e1b30c5

Please sign in to comment.