[QGIS Commit] r15667 - trunk/qgis/src/core
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Mon Apr 4 03:23:56 EDT 2011
Author: jef
Date: 2011-04-04 00:23:56 -0700 (Mon, 04 Apr 2011)
New Revision: 15667
Modified:
trunk/qgis/src/core/qgsrasterprojector.cpp
Log:
fix warning
Modified: trunk/qgis/src/core/qgsrasterprojector.cpp
===================================================================
--- trunk/qgis/src/core/qgsrasterprojector.cpp 2011-04-03 19:34:58 UTC (rev 15666)
+++ trunk/qgis/src/core/qgsrasterprojector.cpp 2011-04-04 07:23:56 UTC (rev 15667)
@@ -31,11 +31,11 @@
QgsRectangle theExtent )
: mSrcCRS( theSrcCRS )
, mDestCRS( theDestCRS )
+ , mCoordinateTransform( theDestCRS, theSrcCRS )
, mDestExtent( theDestExtent )
, mExtent( theExtent )
, mDestRows( theDestRows ), mDestCols( theDestCols )
, mMaxSrcXRes( theMaxSrcXRes ), mMaxSrcYRes( theMaxSrcYRes )
- , mCoordinateTransform( theDestCRS, theSrcCRS )
{
QgsDebugMsg( "Entered" );
QgsDebugMsg( "theDestExtent = " + theDestExtent.toString() );
More information about the QGIS-commit
mailing list