[QGIS Commit] r11423 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Tue Aug 18 07:55:06 EDT 2009


Author: jef
Date: 2009-08-18 07:55:05 -0400 (Tue, 18 Aug 2009)
New Revision: 11423

Modified:
   trunk/qgis/src/app/qgscustomprojectiondialog.cpp
Log:
clean double assignment

Modified: trunk/qgis/src/app/qgscustomprojectiondialog.cpp
===================================================================
--- trunk/qgis/src/app/qgscustomprojectiondialog.cpp	2009-08-18 06:34:04 UTC (rev 11422)
+++ trunk/qgis/src/app/qgscustomprojectiondialog.cpp	2009-08-18 11:55:05 UTC (rev 11423)
@@ -927,9 +927,9 @@
   {
     QString tmp;
 
-    tmp = tmp = QLocale::system().toString( northing, 'f', 4 );
+    tmp = QLocale::system().toString( northing, 'f', 4 );
     projectedX->setText( tmp );
-    tmp = tmp = QLocale::system().toString( easthing, 'f', 4 );
+    tmp = QLocale::system().toString( easthing, 'f', 4 );
     projectedY->setText( tmp );
   }
 



More information about the QGIS-commit mailing list