Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kiselev-dv committed May 4, 2015
1 parent b430151 commit 57d5d07
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/analysis/openstreetmap/qgsosmdatabase.cpp
Expand Up @@ -488,10 +488,9 @@ void QgsOSMDatabase::exportSpatiaLiteWays( bool closed, const QString& tableName
if ( closed != isArea )
continue; // skip if it's not what we're looking for

bool skipNull = false;

//check not null tags
for ( int i = 0; i < notNullTagKeys.count() && skipNull == false; ++i )
bool skipNull = false;
for ( int i = 0; i < notNullTagKeys.count() && !skipNull; ++i )
if ( !t.contains( notNullTagKeys[i] ) )
skipNull = true;

Expand Down

0 comments on commit 57d5d07

Please sign in to comment.