Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo in QgsVectorFileWriter::fileFilterString
  • Loading branch information
manisandro committed Aug 21, 2014
1 parent 599255c commit a4515f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorfilewriter.cpp
Expand Up @@ -2150,7 +2150,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 a4515f1

Please sign in to comment.