Skip to content

Commit 8a1ec1f

Browse files
author
jef
committed
fix compile error
git-svn-id: http://svn.osgeo.org/qgis/trunk@11488 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent e7a675f commit 8a1ec1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgsattributetypedialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void QgsAttributeTypeDialog::updateMap( const QMap<QString, QVariant> &map )
176176
tableWidget->removeRow( i );
177177
}
178178
int row = 0;
179-
for ( QMap<QString, QVariant>::iterator mit = map.begin(); mit != map.end(); mit++, row++ )
179+
for ( QMap<QString, QVariant>::const_iterator mit = map.begin(); mit != map.end(); mit++, row++ )
180180
{
181181
tableWidget->insertRow( row );
182182
if ( mit.value().isNull() )

0 commit comments

Comments
 (0)