Skip to content

Commit

Permalink
fix compile error
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@11488 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Aug 22, 2009
1 parent e7a675f commit 8a1ec1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsattributetypedialog.cpp
Expand Up @@ -176,7 +176,7 @@ void QgsAttributeTypeDialog::updateMap( const QMap<QString, QVariant> &map )
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() )
Expand Down

0 comments on commit 8a1ec1f

Please sign in to comment.