Skip to content

Commit 57d5d07

Browse files
committedMay 4, 2015
fix typo
1 parent b430151 commit 57d5d07

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed
 

‎src/analysis/openstreetmap/qgsosmdatabase.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -488,10 +488,9 @@ void QgsOSMDatabase::exportSpatiaLiteWays( bool closed, const QString& tableName
488488
if ( closed != isArea )
489489
continue; // skip if it's not what we're looking for
490490

491-
bool skipNull = false;
492-
493491
//check not null tags
494-
for ( int i = 0; i < notNullTagKeys.count() && skipNull == false; ++i )
492+
bool skipNull = false;
493+
for ( int i = 0; i < notNullTagKeys.count() && !skipNull; ++i )
495494
if ( !t.contains( notNullTagKeys[i] ) )
496495
skipNull = true;
497496

0 commit comments

Comments
 (0)
Please sign in to comment.