Skip to content

Commit

Permalink
Try to make travis happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Jan 7, 2019
1 parent fbe70f1 commit ab4ca6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/server/services/wms/qgswmsparameters.h
Expand Up @@ -1152,6 +1152,7 @@ namespace QgsWms
/**
* Returns the ATLAS_PK parameter
* \since QGIS 3.6
* \returns The ATLAS_PK parameter
*/
QStringList atlasPk() const;

Expand Down
4 changes: 2 additions & 2 deletions src/server/services/wms/qgswmsrenderer.cpp
Expand Up @@ -404,7 +404,7 @@ namespace QgsWms
if ( atlas->count() > maxAtlasFeatures )
{
throw QgsBadRequestException( QStringLiteral( "AtlasPrintError" ),
QString( "The project configuration allows to print maximum %1 atlas features at a time" ).arg( maxAtlasFeatures ) );
QString( "The project configuration allows printing maximum %1 atlas features at a time" ).arg( maxAtlasFeatures ) );
}
}
else
Expand Down Expand Up @@ -432,7 +432,7 @@ namespace QgsWms
if ( nAtlasFeatures > maxAtlasFeatures )
{
throw QgsBadRequestException( QStringLiteral( "AtlasPrintError" ),
QString( "%1 atlas features have been requestet, but the project configuration only allows to print %2 atlas features at a time" )
QString( "%1 atlas features have been requestet, but the project configuration only allows printing %2 atlas features at a time" )
.arg( nAtlasFeatures ).arg( maxAtlasFeatures ) );
}

Expand Down

0 comments on commit ab4ca6f

Please sign in to comment.