Fixed bug processing URL parameters

This commit is contained in:
Chris Crook 2013-05-10 15:52:33 +12:00
parent be15de88d7
commit 59ffd77258

View File

@ -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" ) )
{