Skip to content

Commit

Permalink
Merge pull request #583 from ccrook/delimited_text_bug_fixes_3
Browse files Browse the repository at this point in the history
Fixed bug processing URL parameters
  • Loading branch information
jef-n committed May 10, 2013
2 parents 2caf0e0 + 59ffd77 commit 639c582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/delimitedtext/qgsdelimitedtextfile.cpp
Expand Up @@ -181,7 +181,7 @@ bool QgsDelimitedTextFile::setFromUrl( QUrl &url )
}
if ( url.hasQueryItem( "skipEmptyFields" ) )
{
mDiscardEmptyFields = ! url.queryItemValue( "useHeader" ).toUpper().startsWith( 'N' );;
mDiscardEmptyFields = ! url.queryItemValue( "skipEmptyFields" ).toUpper().startsWith( 'N' );;
}
if ( url.hasQueryItem( "trimFields" ) )
{
Expand Down

0 comments on commit 639c582

Please sign in to comment.