Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Try to make travis happy
- Loading branch information
|
@@ -1152,6 +1152,7 @@ namespace QgsWms |
|
|
/** |
|
|
* Returns the ATLAS_PK parameter |
|
|
* \since QGIS 3.6 |
|
|
* \returns The ATLAS_PK parameter |
|
|
*/ |
|
|
QStringList atlasPk() const; |
|
|
|
|
|
|
@@ -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 |
|
@@ -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 ) ); |
|
|
} |
|
|
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.