Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
stretch to current extent with reprojection fix
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@15397 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
rblazek committed Mar 9, 2011
1 parent 8d770e9 commit d15150e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/raster/qgsrasterlayer.cpp
Expand Up @@ -4280,7 +4280,7 @@ void *QgsRasterLayer::readData( int bandNo, QgsRasterViewPort *viewPort )
viewPort->mDrawnExtent.xMaximum(),
viewPort->mDrawnExtent.yMaximum()
);
mDataProvider->readBlock( bandNo, partExtent, viewPort->drawableAreaXDim, viewPort->drawableAreaYDim, QgsCoordinateReferenceSystem(), QgsCoordinateReferenceSystem(), data );
mDataProvider->readBlock( bandNo, partExtent, viewPort->drawableAreaXDim, viewPort->drawableAreaYDim, viewPort->mSrcCRS, viewPort->mDestCRS, data );
}
return data;
}
Expand Down

0 comments on commit d15150e

Please sign in to comment.