Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix indentation
  • Loading branch information
jef-n committed Jul 7, 2018
1 parent 9aab40e commit 4f4c928
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/providers/spatialite/qgsspatialiteprovider.cpp
Expand Up @@ -4782,8 +4782,8 @@ void QgsSpatiaLiteProvider::getViewSpatialIndexName()
{
for ( i = 1; i <= rows; i++ )
{
mIndexTable = QString::fromUtf8(( const char * ) results[( i * columns ) + 0] );
mIndexGeometry = QString::fromUtf8(( const char * ) results[( i * columns ) + 1] );
mIndexTable = QString::fromUtf8( ( const char * ) results[( i * columns ) + 0] );
mIndexGeometry = QString::fromUtf8( ( const char * ) results[( i * columns ) + 1] );
mSpatialIndexRTree = true;
}
}
Expand Down Expand Up @@ -4939,8 +4939,8 @@ bool QgsSpatiaLiteProvider::getViewGeometryDetails()
QString fType = results[( i * columns ) + 0];
QString xSrid = results[( i * columns ) + 1];
QString spatialIndex = results[( i * columns ) + 2];
mIndexTable = QString::fromUtf8(( const char * ) results[( i * columns ) + 3] );
mIndexGeometry = QString::fromUtf8(( const char * ) results[( i * columns ) + 4] );
mIndexTable = QString::fromUtf8( ( const char * ) results[( i * columns ) + 3] );
mIndexGeometry = QString::fromUtf8( ( const char * ) results[( i * columns ) + 4] );

if ( fType == QLatin1String( "POINT" ) )
{
Expand Down

0 comments on commit 4f4c928

Please sign in to comment.