Skip to content

Commit

Permalink
Merge pull request #1548 from manisandro/typo
Browse files Browse the repository at this point in the history
Fix typo in QgsVectorFileWriter::fileFilterString
  • Loading branch information
nyalldawson committed Sep 25, 2014
2 parents e37a5ad + a4515f1 commit acb4c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorfilewriter.cpp
Expand Up @@ -2157,7 +2157,7 @@ QString QgsVectorFileWriter::fileFilterString()
QMap< QString, QString>::const_iterator it = driverFormatMap.constBegin();
for ( ; it != driverFormatMap.constEnd(); ++it )
{
if ( filterString.isEmpty() )
if ( !filterString.isEmpty() )
filterString += ";;";

filterString += it.key();
Expand Down

0 comments on commit acb4c04

Please sign in to comment.