[QGIS Commit] r11905 - trunk/qgis/src/core/composer

svn_qgis at osgeo.org svn_qgis at osgeo.org
Tue Nov 3 10:56:27 EST 2009


Author: jef
Date: 2009-11-03 10:56:27 -0500 (Tue, 03 Nov 2009)
New Revision: 11905

Modified:
   trunk/qgis/src/core/composer/qgscomposerpicture.cpp
Log:
fix warning

Modified: trunk/qgis/src/core/composer/qgscomposerpicture.cpp
===================================================================
--- trunk/qgis/src/core/composer/qgscomposerpicture.cpp	2009-11-03 15:54:36 UTC (rev 11904)
+++ trunk/qgis/src/core/composer/qgscomposerpicture.cpp	2009-11-03 15:56:27 UTC (rev 11905)
@@ -73,10 +73,6 @@
 
     double boundRectWidthMM = boundRect.width() / newDpi * 25.4;
     double boundRectHeightMM = boundRect.height() / newDpi * 25.4;
-    double unrotatedBoundImageWidth = boundRect.width();
-    double unrotatedBoundImageHeight = boundRect.height();
-    double unrotatedBoundImageWidthMM = unrotatedBoundImageWidth / newDpi * 25.4;
-    double unrotatedBoundImageHeightMM = unrotatedBoundImageHeight / newDpi * 25.4;
     double rotatedBoundImageWidth = boundRect.width();
     double rotatedBoundImageHeight = boundRect.height();
     imageSizeConsideringRotation( rotatedBoundImageWidth, rotatedBoundImageHeight );
@@ -211,8 +207,10 @@
   double y2 = 0;
   double x3 = width;
   double y3 = height;
+#if 0
   double x4 = 0;
   double y4 = height;
+#endif
 
   if ( !cornerPointOnRotatedAndScaledRect( x1, y1, width, height ) )
   {
@@ -226,11 +224,12 @@
   {
     return false;
   }
-  /*
+#if 0
   if(!cornerPointOnRotatedAndScaledRect(x4, y4, width, height))
   {
     return false;
-  }*/
+  }
+#endif
 
   width = sqrt(( x2 - x1 ) * ( x2 - x1 ) + ( y2 - y1 ) * ( y2 - y1 ) );
   height = sqrt(( x3 - x2 ) * ( x3 - x2 ) + ( y3 - y2 ) * ( y3 - y2 ) );



More information about the QGIS-commit mailing list