mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
fix typo
This commit is contained in:
parent
b430151e23
commit
57d5d0796e
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user