Skip to content

Commit acb4c04

Browse files
committedSep 25, 2014
Merge pull request #1548 from manisandro/typo
Fix typo in QgsVectorFileWriter::fileFilterString
2 parents e37a5ad + a4515f1 commit acb4c04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/core/qgsvectorfilewriter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2157,7 +2157,7 @@ QString QgsVectorFileWriter::fileFilterString()
21572157
QMap< QString, QString>::const_iterator it = driverFormatMap.constBegin();
21582158
for ( ; it != driverFormatMap.constEnd(); ++it )
21592159
{
2160-
if ( filterString.isEmpty() )
2160+
if ( !filterString.isEmpty() )
21612161
filterString += ";;";
21622162

21632163
filterString += it.key();

0 commit comments

Comments
 (0)
Please sign in to comment.