Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed bug processing URL parameters
  • Loading branch information
ccrook committed May 10, 2013
1 parent be15de8 commit 59ffd77
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 59ffd77

Please sign in to comment.