Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove another use of deprecated QgsCoordinateTransform constructor
Sponsored by ICSM
  • Loading branch information
nyalldawson committed Mar 19, 2019
1 parent ad11785 commit 92d9d71
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/core/qgsvectorlayerdiagramprovider.cpp
Expand Up @@ -148,14 +148,12 @@ bool QgsVectorLayerDiagramProvider::prepare( const QgsRenderContext &context, QS
const QgsMapSettings &mapSettings = mEngine->mapSettings();

if ( context.coordinateTransform().isValid() )
// this is context for layer rendering - use its CT as it includes correct datum transform
// this is context for layer rendering
s2.setCoordinateTransform( context.coordinateTransform() );
else
{
// otherwise fall back to creating our own CT - this one may not have the correct datum transform!
Q_NOWARN_DEPRECATED_PUSH
s2.setCoordinateTransform( QgsCoordinateTransform( mLayerCrs, mapSettings.destinationCrs() ) );
Q_NOWARN_DEPRECATED_POP
// otherwise fall back to creating our own CT
s2.setCoordinateTransform( QgsCoordinateTransform( mLayerCrs, mapSettings.destinationCrs(), context.transformContext() ) );
}

s2.setRenderer( mDiagRenderer );
Expand Down

0 comments on commit 92d9d71

Please sign in to comment.