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

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sat Aug 22 16:24:33 EDT 2009


Author: jef
Date: 2009-08-22 16:24:33 -0400 (Sat, 22 Aug 2009)
New Revision: 11488

Modified:
   trunk/qgis/src/app/qgsattributetypedialog.cpp
Log:
fix compile error

Modified: trunk/qgis/src/app/qgsattributetypedialog.cpp
===================================================================
--- trunk/qgis/src/app/qgsattributetypedialog.cpp	2009-08-22 20:22:47 UTC (rev 11487)
+++ trunk/qgis/src/app/qgsattributetypedialog.cpp	2009-08-22 20:24:33 UTC (rev 11488)
@@ -176,7 +176,7 @@
     tableWidget->removeRow( i );
   }
   int row = 0;
-  for ( QMap<QString, QVariant>::iterator mit = map.begin(); mit != map.end(); mit++, row++ )
+  for ( QMap<QString, QVariant>::const_iterator mit = map.begin(); mit != map.end(); mit++, row++ )
   {
     tableWidget->insertRow( row );
     if ( mit.value().isNull() )



More information about the QGIS-commit mailing list