Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #5 from timlinux/release-1_7_0
Radims fix for raster otf of wms render issues - and Guiseppi's gdal warp fix
  • Loading branch information
timlinux committed May 7, 2011
2 parents 626f9dd + 08ee810 commit aadfa8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsrasterprojector.cpp
Expand Up @@ -130,7 +130,7 @@ void QgsRasterProjector::calcSrcExtent()
mSrcExtent = QgsRectangle( myPoint.x(), myPoint.y(), myPoint.x(), myPoint.y() );
for ( int i = 0; i < mCPRows; i++ )
{
for ( int j = 1; j < mCPCols - 1; j++ )
for ( int j = 0; j < mCPCols ; j++ )
{
myPoint = mCPMatrix[i][j];
mSrcExtent.combineExtentWith( myPoint.x(), myPoint.y() );
Expand Down

0 comments on commit aadfa8c

Please sign in to comment.