Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix compilation with Qt < 5.10
  • Loading branch information
pblottiere committed Jul 23, 2018
1 parent acc2055 commit 7692e35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/services/wfs/qgswfsparameters.cpp
Expand Up @@ -51,7 +51,7 @@ namespace QgsWfs
const QStringList corners = mValue.toString().split( ',' );
if ( corners.size() == 5 )
{
value = value.chopped( corners[4].size() + 1 );
value.resize( value.size() - corners[4].size() - 1 );
}

QgsServerParameterDefinition param;
Expand Down

0 comments on commit 7692e35

Please sign in to comment.